useSuggestion(prompt)"
>
- {{ prompt.label }}
+ {{ t(prompt.label) }}
diff --git a/app/javascript/dashboard/components-next/input/DurationInput.vue b/app/javascript/dashboard/components-next/input/DurationInput.vue
new file mode 100644
index 000000000..15c6d102a
--- /dev/null
+++ b/app/javascript/dashboard/components-next/input/DurationInput.vue
@@ -0,0 +1,66 @@
+
+
+
+
+
+
+ {{ t('DURATION_INPUT.MINUTES') }}
+
+ {{ t('DURATION_INPUT.HOURS') }}
+ {{ t('DURATION_INPUT.DAYS') }}
+
+
diff --git a/app/javascript/dashboard/components-next/message/Message.vue b/app/javascript/dashboard/components-next/message/Message.vue
index ad607cf5b..c28b4730e 100644
--- a/app/javascript/dashboard/components-next/message/Message.vue
+++ b/app/javascript/dashboard/components-next/message/Message.vue
@@ -118,7 +118,7 @@ const props = defineProps({
},
conversationId: { type: Number, required: true },
createdAt: { type: Number, required: true }, // eslint-disable-line vue/no-unused-properties
- currentUserId: { type: Number, required: true },
+ currentUserId: { type: Number, required: true }, // eslint-disable-line vue/no-unused-properties
groupWithNext: { type: Boolean, default: false },
inboxId: { type: Number, default: null }, // eslint-disable-line vue/no-unused-properties
inboxSupportsReplyTo: { type: Object, default: () => ({}) },
@@ -174,7 +174,10 @@ const variant = computed(() => {
return variants[props.messageType] || MESSAGE_VARIANTS.USER;
});
-const isMyMessage = computed(() => {
+const isBotOrAgentMessage = computed(() => {
+ if (props.messageType === MESSAGE_TYPES.ACTIVITY) {
+ return false;
+ }
// if an outgoing message is still processing, then it's definitely a
// message sent by the current user
if (
@@ -187,13 +190,10 @@ const isMyMessage = computed(() => {
const senderType = props.senderType ?? props.sender?.type;
if (!senderType || !senderId) {
- return false;
+ return true;
}
- return (
- senderType.toLowerCase() === SENDER_TYPES.USER.toLowerCase() &&
- props.currentUserId === senderId
- );
+ return senderType.toLowerCase() === SENDER_TYPES.USER.toLowerCase();
});
/**
@@ -201,7 +201,7 @@ const isMyMessage = computed(() => {
* @returns {import('vue').ComputedRef<'left'|'right'|'center'>} The computed orientation
*/
const orientation = computed(() => {
- if (isMyMessage.value) {
+ if (isBotOrAgentMessage.value) {
return ORIENTATION.RIGHT;
}
@@ -222,8 +222,8 @@ const flexOrientationClass = computed(() => {
const gridClass = computed(() => {
const map = {
- [ORIENTATION.LEFT]: 'grid grid-cols-[24px_1fr]',
- [ORIENTATION.RIGHT]: 'grid grid-cols-1fr',
+ [ORIENTATION.LEFT]: 'grid grid-cols-1fr',
+ [ORIENTATION.RIGHT]: 'grid grid-cols-[1fr_24px]',
};
return map[orientation.value];
@@ -232,13 +232,13 @@ const gridClass = computed(() => {
const gridTemplate = computed(() => {
const map = {
[ORIENTATION.LEFT]: `
- "avatar bubble"
- "spacer meta"
- `,
- [ORIENTATION.RIGHT]: `
"bubble"
"meta"
`,
+ [ORIENTATION.RIGHT]: `
+ "bubble avatar"
+ "meta spacer"
+ `,
};
return map[orientation.value];
@@ -252,7 +252,7 @@ const shouldGroupWithNext = computed(() => {
const shouldShowAvatar = computed(() => {
if (props.messageType === MESSAGE_TYPES.ACTIVITY) return false;
- if (orientation.value === ORIENTATION.RIGHT) return false;
+ if (orientation.value === ORIENTATION.LEFT) return false;
return true;
});
@@ -404,23 +404,29 @@ function handleReplyTo() {
}
const avatarInfo = computed(() => {
- if (!props.sender || props.sender.type === SENDER_TYPES.AGENT_BOT) {
+ // If no sender, return bot info
+ if (!props.sender) {
return {
name: t('CONVERSATION.BOT'),
src: '',
};
}
- if (props.sender) {
+ const { sender } = props;
+ const { name, type, avatarUrl, thumbnail } = sender || {};
+
+ // If sender type is agent bot, use avatarUrl
+ if (type === SENDER_TYPES.AGENT_BOT) {
return {
- name: props.sender.name,
- src: props.sender?.thumbnail,
+ name: name ?? '',
+ src: avatarUrl ?? '',
};
}
+ // For all other senders, use thumbnail
return {
- name: '',
- src: '',
+ name: name ?? '',
+ src: thumbnail ?? '',
};
});
@@ -448,7 +454,7 @@ provideMessageContext({
isPrivate: computed(() => props.private),
variant,
orientation,
- isMyMessage,
+ isBotOrAgentMessage,
shouldGroupWithNext,
});
@@ -480,14 +486,14 @@ provideMessageContext({
'w-full': variant === MESSAGE_VARIANTS.EMAIL,
},
]"
- class="gap-x-3"
+ class="gap-x-2"
:style="{
gridTemplateAreas: gridTemplate,
}"
>
@@ -495,7 +501,8 @@ provideMessageContext({
diff --git a/app/javascript/dashboard/components-next/message/provider.js b/app/javascript/dashboard/components-next/message/provider.js
index f4c501845..f40eaefa0 100644
--- a/app/javascript/dashboard/components-next/message/provider.js
+++ b/app/javascript/dashboard/components-next/message/provider.js
@@ -98,7 +98,7 @@ const MessageControl = Symbol('MessageControl');
* @property {import('vue').Ref} [sender=null] - The sender information
* @property {import('vue').ComputedRef} orientation - The visual variant of the message
* @property {import('vue').ComputedRef} variant - The visual variant of the message
- * @property {import('vue').ComputedRef} isMyMessage - Does the message belong to the current user
+ * @property {import('vue').ComputedRef} isBotOrAgentMessage - Does the message belong to the current user
* @property {import('vue').ComputedRef} isPrivate - Proxy computed value for private
* @property {import('vue').ComputedRef} shouldGroupWithNext - Should group with the next message or not, it is differnt from groupWithNext, this has a bypass for a failed message
*/
diff --git a/app/javascript/dashboard/components-next/selectmenu/SelectMenu.vue b/app/javascript/dashboard/components-next/selectmenu/SelectMenu.vue
index cc584dcbb..922c0069e 100644
--- a/app/javascript/dashboard/components-next/selectmenu/SelectMenu.vue
+++ b/app/javascript/dashboard/components-next/selectmenu/SelectMenu.vue
@@ -15,6 +15,13 @@ const props = defineProps({
type: String,
required: true,
},
+ subMenuPosition: {
+ type: String,
+ default: 'right',
+ validator: value => {
+ return ['right', 'left', 'bottom'].includes(value);
+ },
+ },
});
const emit = defineEmits(['update:modelValue']);
@@ -44,14 +51,21 @@ const handleSelect = value => {
trailing-icon
color="slate"
variant="faded"
- class="!w-fit"
+ class="!w-fit max-w-40"
:class="{ 'dark:!bg-n-alpha-2 !bg-n-slate-9/20': isOpen }"
:label="labelValue"
@click="toggleMenu"
/>
{
>
{{ t('SWITCH.TOGGLE') }}
diff --git a/app/javascript/dashboard/components/widgets/conversation/ConversationBasicFilter.vue b/app/javascript/dashboard/components/widgets/conversation/ConversationBasicFilter.vue
index e328f86b4..dc434f6c7 100644
--- a/app/javascript/dashboard/components/widgets/conversation/ConversationBasicFilter.vue
+++ b/app/javascript/dashboard/components/widgets/conversation/ConversationBasicFilter.vue
@@ -1,93 +1,129 @@
-
@@ -99,39 +135,39 @@ export default {
slate
faded
xs
- @click="toggleDropdown"
+ @click="toggleDropdown()"
/>
-
- {{
- $t('CHAT_LIST.CHAT_SORT.STATUS')
- }}
-
+
+ {{ $t('CHAT_LIST.CHAT_SORT.STATUS') }}
+
+
-
- {{
- $t('CHAT_LIST.CHAT_SORT.ORDER_BY')
- }}
-
+
+ {{ $t('CHAT_LIST.CHAT_SORT.ORDER_BY') }}
+
+
diff --git a/app/javascript/dashboard/composables/useAccount.js b/app/javascript/dashboard/composables/useAccount.js
index 8ace2a5e1..9a2ba012b 100644
--- a/app/javascript/dashboard/composables/useAccount.js
+++ b/app/javascript/dashboard/composables/useAccount.js
@@ -1,6 +1,6 @@
import { computed } from 'vue';
import { useRoute } from 'vue-router';
-import { useMapGetter } from './store';
+import { useMapGetter, useStore } from './store';
/**
* Composable for account-related operations.
@@ -12,6 +12,7 @@ export function useAccount() {
* @type {import('vue').ComputedRef}
*/
const route = useRoute();
+ const store = useStore();
const getAccountFn = useMapGetter('accounts/getAccount');
const isOnChatwootCloud = useMapGetter('globalConfig/isOnChatwootCloud');
const isFeatureEnabledonAccount = useMapGetter(
@@ -44,6 +45,12 @@ export function useAccount() {
};
};
+ const updateAccount = async data => {
+ await store.dispatch('accounts/update', {
+ ...data,
+ });
+ };
+
return {
accountId,
route,
@@ -52,5 +59,6 @@ export function useAccount() {
accountScopedRoute,
isCloudFeatureEnabled,
isOnChatwootCloud,
+ updateAccount,
};
}
diff --git a/app/javascript/dashboard/i18n/locale/am/components.json b/app/javascript/dashboard/i18n/locale/am/components.json
index c7230b1fc..e44c6e039 100644
--- a/app/javascript/dashboard/i18n/locale/am/components.json
+++ b/app/javascript/dashboard/i18n/locale/am/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Learn more",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/am/generalSettings.json b/app/javascript/dashboard/i18n/locale/am/generalSettings.json
index cfda6c7da..e586fe761 100644
--- a/app/javascript/dashboard/i18n/locale/am/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/am/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "Account ID",
"NOTE": "This ID is required if you are building an API based integration"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Account name",
"PLACEHOLDER": "Your account name",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Number of days after a ticket should auto resolve if there is no activity",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)"
+ "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "Conversation continuity with emails is enabled for your account.",
diff --git a/app/javascript/dashboard/i18n/locale/am/integrations.json b/app/javascript/dashboard/i18n/locale/am/integrations.json
index fa46b1900..f1a1d42c2 100644
--- a/app/javascript/dashboard/i18n/locale/am/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/am/integrations.json
@@ -334,7 +334,21 @@
"YOU": "You",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "You",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Name",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Description",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/ar/components.json b/app/javascript/dashboard/i18n/locale/ar/components.json
index 6a4b2f4cb..e06f11d82 100644
--- a/app/javascript/dashboard/i18n/locale/ar/components.json
+++ b/app/javascript/dashboard/i18n/locale/ar/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "اعرف المزيد",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/ar/generalSettings.json b/app/javascript/dashboard/i18n/locale/ar/generalSettings.json
index 694f4dc59..09463f134 100644
--- a/app/javascript/dashboard/i18n/locale/ar/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/ar/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "معرف الحساب",
"NOTE": "هذا المعرف مطلوب إذا كنت بصدد بناء تكامل على API"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "اسم الحساب",
"PLACEHOLDER": "اسم الحساب الخاص بك",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "عدد الأيام للتذكرة التي يجب أن يتم حلها تلقائياً إذا لم يكن هناك أي نشاط",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "الرجاء إدخال مدة صالحة للحل تلقائي (حد أدنى 1 يوم والحد الأقصى 999 يوما)"
+ "ERROR": "الرجاء إدخال مدة صالحة للحل تلقائي (حد أدنى 1 يوم والحد الأقصى 999 يوما)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "الاستمرار في المحادثة عبر رسائل البريد الإلكتروني مفعّل لحسابك.",
diff --git a/app/javascript/dashboard/i18n/locale/ar/integrations.json b/app/javascript/dashboard/i18n/locale/ar/integrations.json
index 1fc3f38d2..24e64a972 100644
--- a/app/javascript/dashboard/i18n/locale/ar/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/ar/integrations.json
@@ -334,7 +334,21 @@
"YOU": "أنت",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "أنت",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "الاسم",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "الوصف",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/az/components.json b/app/javascript/dashboard/i18n/locale/az/components.json
index c7230b1fc..e44c6e039 100644
--- a/app/javascript/dashboard/i18n/locale/az/components.json
+++ b/app/javascript/dashboard/i18n/locale/az/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Learn more",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/az/generalSettings.json b/app/javascript/dashboard/i18n/locale/az/generalSettings.json
index cfda6c7da..e586fe761 100644
--- a/app/javascript/dashboard/i18n/locale/az/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/az/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "Account ID",
"NOTE": "This ID is required if you are building an API based integration"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Account name",
"PLACEHOLDER": "Your account name",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Number of days after a ticket should auto resolve if there is no activity",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)"
+ "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "Conversation continuity with emails is enabled for your account.",
diff --git a/app/javascript/dashboard/i18n/locale/az/integrations.json b/app/javascript/dashboard/i18n/locale/az/integrations.json
index fa46b1900..f1a1d42c2 100644
--- a/app/javascript/dashboard/i18n/locale/az/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/az/integrations.json
@@ -334,7 +334,21 @@
"YOU": "You",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "You",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Name",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Description",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/bg/components.json b/app/javascript/dashboard/i18n/locale/bg/components.json
index 2bba5bc01..cb087f380 100644
--- a/app/javascript/dashboard/i18n/locale/bg/components.json
+++ b/app/javascript/dashboard/i18n/locale/bg/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Learn more",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/bg/generalSettings.json b/app/javascript/dashboard/i18n/locale/bg/generalSettings.json
index 3cdafe2fe..7c3af981f 100644
--- a/app/javascript/dashboard/i18n/locale/bg/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/bg/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "Account ID",
"NOTE": "This ID is required if you are building an API based integration"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Account name",
"PLACEHOLDER": "Your account name",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Number of days after a ticket should auto resolve if there is no activity",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)"
+ "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "Conversation continuity with emails is enabled for your account.",
diff --git a/app/javascript/dashboard/i18n/locale/bg/integrations.json b/app/javascript/dashboard/i18n/locale/bg/integrations.json
index 6432e684b..3bbc0bf71 100644
--- a/app/javascript/dashboard/i18n/locale/bg/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/bg/integrations.json
@@ -334,7 +334,21 @@
"YOU": "You",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "You",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Име",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Описание",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/ca/components.json b/app/javascript/dashboard/i18n/locale/ca/components.json
index b45eb74fb..11623bd86 100644
--- a/app/javascript/dashboard/i18n/locale/ca/components.json
+++ b/app/javascript/dashboard/i18n/locale/ca/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Aprèn més",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/ca/generalSettings.json b/app/javascript/dashboard/i18n/locale/ca/generalSettings.json
index adca9cca9..9969494f5 100644
--- a/app/javascript/dashboard/i18n/locale/ca/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/ca/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "ID del compte",
"NOTE": "Aquest identificador és necessari si esteu creant una integració basada en API"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Nom del compte",
"PLACEHOLDER": "El nom del vostre compte",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "El nombre de dies després que un ticket es resolgui automàticament si no hi ha activitat",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Introduïu una durada de resolució automàtica vàlida (mínim 1 dia i màxim 999 dies)"
+ "ERROR": "Introduïu una durada de resolució automàtica vàlida (mínim 1 dia i màxim 999 dies)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "La continuïtat de converses amb correus electrònics està habilitada per al vostre compte.",
diff --git a/app/javascript/dashboard/i18n/locale/ca/integrations.json b/app/javascript/dashboard/i18n/locale/ca/integrations.json
index dd75e22c0..76a028c64 100644
--- a/app/javascript/dashboard/i18n/locale/ca/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/ca/integrations.json
@@ -334,7 +334,21 @@
"YOU": "Tu",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "Tu",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Nom",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Descripció",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/cs/components.json b/app/javascript/dashboard/i18n/locale/cs/components.json
index 847cdee59..480c7e626 100644
--- a/app/javascript/dashboard/i18n/locale/cs/components.json
+++ b/app/javascript/dashboard/i18n/locale/cs/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Learn more",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/cs/generalSettings.json b/app/javascript/dashboard/i18n/locale/cs/generalSettings.json
index 61765145c..9d750008f 100644
--- a/app/javascript/dashboard/i18n/locale/cs/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/cs/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "Account ID",
"NOTE": "This ID is required if you are building an API based integration"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Název účtu",
"PLACEHOLDER": "Název vašeho účtu",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Počet dnů, po kterých by měl být ticket automaticky vyřešen při žádné aktivitě",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)"
+ "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "E-mailová konverzace je u vašeho účtu povolena.",
diff --git a/app/javascript/dashboard/i18n/locale/cs/integrations.json b/app/javascript/dashboard/i18n/locale/cs/integrations.json
index ddca19146..2671155ae 100644
--- a/app/javascript/dashboard/i18n/locale/cs/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/cs/integrations.json
@@ -334,7 +334,21 @@
"YOU": "Vy",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "Vy",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Název",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Description",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/da/components.json b/app/javascript/dashboard/i18n/locale/da/components.json
index 1ce510edc..7905f51e6 100644
--- a/app/javascript/dashboard/i18n/locale/da/components.json
+++ b/app/javascript/dashboard/i18n/locale/da/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Lær mere",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/da/generalSettings.json b/app/javascript/dashboard/i18n/locale/da/generalSettings.json
index 58c1a7a2e..ac6a67899 100644
--- a/app/javascript/dashboard/i18n/locale/da/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/da/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "Konto SID",
"NOTE": "Dette ID er påkrævet, hvis du bygger en API-baseret integration"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Kontonavn",
"PLACEHOLDER": "Dit kontonavn",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Antal dage efter en ticket skal løses automatisk, hvis der ikke er nogen aktivitet",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Please enter a valid auto resolve duration (minimum 1 dag og maksimum 999 dage)"
+ "ERROR": "Please enter a valid auto resolve duration (minimum 1 dag og maksimum 999 dage)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "Samtale kontinuitet med e-mails er aktiveret for din konto.",
diff --git a/app/javascript/dashboard/i18n/locale/da/integrations.json b/app/javascript/dashboard/i18n/locale/da/integrations.json
index f9a46c365..1a0de11ae 100644
--- a/app/javascript/dashboard/i18n/locale/da/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/da/integrations.json
@@ -334,7 +334,21 @@
"YOU": "Dig",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "Dig",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Navn",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Beskrivelse",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/de/components.json b/app/javascript/dashboard/i18n/locale/de/components.json
index 3ef5c8fe8..e9497cd02 100644
--- a/app/javascript/dashboard/i18n/locale/de/components.json
+++ b/app/javascript/dashboard/i18n/locale/de/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Mehr erfahren",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/de/generalSettings.json b/app/javascript/dashboard/i18n/locale/de/generalSettings.json
index bfc4a912a..cf5ea916e 100644
--- a/app/javascript/dashboard/i18n/locale/de/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/de/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "Account ID",
"NOTE": "Diese ID ist erforderlich, wenn Sie eine API-basierte Integration erstellen"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Kontobezeichnung",
"PLACEHOLDER": "Ihr Kontoname",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Anzahl der Tage, nach denen ein Ticket automatisch geschlossen wird, wenn keine Aktivität erfolgt",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Bitte geben Sie eine gültige Dauer für die automatische Auflösung ein (mindestens 1Tag und maximal 999Tage)"
+ "ERROR": "Bitte geben Sie eine gültige Dauer für die automatische Auflösung ein (mindestens 1Tag und maximal 999Tage)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "Konversationskontinuität mit E-Mails ist für Ihr Konto aktiviert.",
diff --git a/app/javascript/dashboard/i18n/locale/de/integrations.json b/app/javascript/dashboard/i18n/locale/de/integrations.json
index 3bab5dec5..d63dd7d5c 100644
--- a/app/javascript/dashboard/i18n/locale/de/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/de/integrations.json
@@ -334,7 +334,21 @@
"YOU": "Sie",
"USE": "Verwenden",
"RESET": "Zurücksetzen",
- "SELECT_ASSISTANT": "Assistent auswählen"
+ "SELECT_ASSISTANT": "Assistent auswählen",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "Sie",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Name",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Beschreibung",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/el/components.json b/app/javascript/dashboard/i18n/locale/el/components.json
index 2e0f6c686..0e08a569b 100644
--- a/app/javascript/dashboard/i18n/locale/el/components.json
+++ b/app/javascript/dashboard/i18n/locale/el/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Μάθετε περισσότερα",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/el/generalSettings.json b/app/javascript/dashboard/i18n/locale/el/generalSettings.json
index eef4753fe..df42da768 100644
--- a/app/javascript/dashboard/i18n/locale/el/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/el/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "ID Λογαριασμού",
"NOTE": "Αυτό το ID απαιτείται αν δημιουργείτε μια ενσωμάτωση βασισμένη στο API"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Ονομασία Λογαριασμού",
"PLACEHOLDER": "Η ονομασία του Λογαριασμού σας",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Αριθμός ημερών μετά τις οποίες η συνομιλία θα επιλύεται αυτόματα, αν δεν υπάρχει δραστηριότητα",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Παρακαλώ εισάγετε μια έγκυρη διάρκεια αυτόματης επίλυσης (ελάχιστο 1 ημέρα και μέγιστο 999 ημέρες)"
+ "ERROR": "Παρακαλώ εισάγετε μια έγκυρη διάρκεια αυτόματης επίλυσης (ελάχιστο 1 ημέρα και μέγιστο 999 ημέρες)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "Η συνέχεια της συνομιλίας με emails έχει ενεργοποιηθεί για τον λογαριασμό.",
diff --git a/app/javascript/dashboard/i18n/locale/el/integrations.json b/app/javascript/dashboard/i18n/locale/el/integrations.json
index f62a3dcbd..97094d3b4 100644
--- a/app/javascript/dashboard/i18n/locale/el/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/el/integrations.json
@@ -334,7 +334,21 @@
"YOU": "You",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "You",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Όνομα",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Περιγραφή",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/en/components.json b/app/javascript/dashboard/i18n/locale/en/components.json
index c7230b1fc..e44c6e039 100644
--- a/app/javascript/dashboard/i18n/locale/en/components.json
+++ b/app/javascript/dashboard/i18n/locale/en/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Learn more",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/en/generalSettings.json b/app/javascript/dashboard/i18n/locale/en/generalSettings.json
index cfda6c7da..7da76df18 100644
--- a/app/javascript/dashboard/i18n/locale/en/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/en/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "Account ID",
"NOTE": "This ID is required if you are building an API based integration"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically resolve the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Account name",
"PLACEHOLDER": "Your account name",
@@ -64,10 +68,23 @@
"PLACEHOLDER": "Your company's support email",
"ERROR": ""
},
+ "AUTO_RESOLVE_IGNORE_WAITING": {
+ "LABEL": "Exclude unattended conversations",
+ "HELP": "When enabled, the system will skip resolving conversations that are still waiting for an agent’s reply."
+ },
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Number of days after a ticket should auto resolve if there is no activity",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)"
+ "ERROR": "Auto resolve duration should be between 10 minutes and 999 days",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "Conversation continuity with emails is enabled for your account.",
diff --git a/app/javascript/dashboard/i18n/locale/en/integrations.json b/app/javascript/dashboard/i18n/locale/en/integrations.json
index ed56b1669..9767df3ad 100644
--- a/app/javascript/dashboard/i18n/locale/en/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/en/integrations.json
@@ -41,7 +41,9 @@
"MESSAGE_UPDATED": "Message updated",
"WEBWIDGET_TRIGGERED": "Live chat widget opened by the user",
"CONTACT_CREATED": "Contact created",
- "CONTACT_UPDATED": "Contact updated"
+ "CONTACT_UPDATED": "Contact updated",
+ "CONVERSATION_TYPING_ON": "Conversation Typing On",
+ "CONVERSATION_TYPING_OFF": "Conversation Typing Off"
}
},
"END_POINT": {
@@ -331,7 +333,21 @@
"YOU": "You",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "You",
@@ -389,15 +405,18 @@
},
"NAME": {
"LABEL": "Name",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Description",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/es/components.json b/app/javascript/dashboard/i18n/locale/es/components.json
index 67564e605..79764eadc 100644
--- a/app/javascript/dashboard/i18n/locale/es/components.json
+++ b/app/javascript/dashboard/i18n/locale/es/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Más información",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/es/generalSettings.json b/app/javascript/dashboard/i18n/locale/es/generalSettings.json
index 8e79d1912..b25cbfcc0 100644
--- a/app/javascript/dashboard/i18n/locale/es/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/es/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "ID de Cuenta",
"NOTE": "Este ID es necesario si estás construyendo una integración basada en API"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Nombre de cuenta",
"PLACEHOLDER": "Tu nombre de cuenta",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Número de días después de que un ticket se resuelva automáticamente si no hay actividad",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Por favor introduzca una duración válida de resolución automática (mínimo 1 día y máximo 999 días)"
+ "ERROR": "Por favor introduzca una duración válida de resolución automática (mínimo 1 día y máximo 999 días)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "Continuidad de la conversación con emails está habilitada para su cuenta.",
diff --git a/app/javascript/dashboard/i18n/locale/es/integrations.json b/app/javascript/dashboard/i18n/locale/es/integrations.json
index a086947e1..0d205336f 100644
--- a/app/javascript/dashboard/i18n/locale/es/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/es/integrations.json
@@ -334,7 +334,21 @@
"YOU": "Tú",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "Tú",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Nombre",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Descripción",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/fa/components.json b/app/javascript/dashboard/i18n/locale/fa/components.json
index c4b5cd813..13c553711 100644
--- a/app/javascript/dashboard/i18n/locale/fa/components.json
+++ b/app/javascript/dashboard/i18n/locale/fa/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "بیشتر بدانید",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/fa/generalSettings.json b/app/javascript/dashboard/i18n/locale/fa/generalSettings.json
index 67f66385a..94a51effc 100644
--- a/app/javascript/dashboard/i18n/locale/fa/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/fa/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "شناسه حسابکاربری",
"NOTE": "اگر شما در حال ساخت یک یکپارچهسازی مبتنی بر API هستید، این شناسه مورد نیاز است"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "نام حسابکاربری",
"PLACEHOLDER": "نام حسابکاربری شما",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "تعداد روزهایی که اگر فعالیتی وجود نداشته باشد، گفتگو به صورت خودکار بسته شود",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "۳۰",
- "ERROR": "لطفا یک مدت زمان حل خودکار معبر (بین حداقل 1 روز تا حداکثر 999 روز) وارد کنید"
+ "ERROR": "لطفا یک مدت زمان حل خودکار معبر (بین حداقل 1 روز تا حداکثر 999 روز) وارد کنید",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "تداوم مکالمه با ایمیل برای حساب شما فعال است.",
diff --git a/app/javascript/dashboard/i18n/locale/fa/integrations.json b/app/javascript/dashboard/i18n/locale/fa/integrations.json
index ba0bba48c..01e113aa6 100644
--- a/app/javascript/dashboard/i18n/locale/fa/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/fa/integrations.json
@@ -334,7 +334,21 @@
"YOU": "شما",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "شما",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "نام",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "توضیحات",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/fi/components.json b/app/javascript/dashboard/i18n/locale/fi/components.json
index 916b21a31..4270da3d8 100644
--- a/app/javascript/dashboard/i18n/locale/fi/components.json
+++ b/app/javascript/dashboard/i18n/locale/fi/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Learn more",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/fi/generalSettings.json b/app/javascript/dashboard/i18n/locale/fi/generalSettings.json
index e9d085363..49d91148e 100644
--- a/app/javascript/dashboard/i18n/locale/fi/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/fi/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "Account ID",
"NOTE": "This ID is required if you are building an API based integration"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Tilin nimi",
"PLACEHOLDER": "Tilisi nimi",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Kuinka monen päivän jälkeen tukipyyntö suljetaan automaattisesti, mikäli sillä ei ole toimintaa",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)"
+ "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "Keskustelun jatkuvuus sähköpostin kautta on käytössä tililläsi.",
diff --git a/app/javascript/dashboard/i18n/locale/fi/integrations.json b/app/javascript/dashboard/i18n/locale/fi/integrations.json
index fa18e4a7b..6f749c74b 100644
--- a/app/javascript/dashboard/i18n/locale/fi/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/fi/integrations.json
@@ -334,7 +334,21 @@
"YOU": "Sinä",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "Sinä",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Nimi",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Kuvaus",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/fr/components.json b/app/javascript/dashboard/i18n/locale/fr/components.json
index 6048fd367..eab6fa32a 100644
--- a/app/javascript/dashboard/i18n/locale/fr/components.json
+++ b/app/javascript/dashboard/i18n/locale/fr/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "En savoir plus",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/fr/generalSettings.json b/app/javascript/dashboard/i18n/locale/fr/generalSettings.json
index cbad750f0..f84a2094d 100644
--- a/app/javascript/dashboard/i18n/locale/fr/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/fr/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "ID de compte",
"NOTE": "Cet identifiant est requis si vous construisez une intégration basée sur l'API"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Nom du compte",
"PLACEHOLDER": "Votre nom de compte",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Nombre de jours après qu'un ticket soit automatiquement résolu s'il n'y a pas d'activité",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Veuillez entrer une durée de résolution automatique valide (minimum 1 jour et maximum 999 jours)"
+ "ERROR": "Veuillez entrer une durée de résolution automatique valide (minimum 1 jour et maximum 999 jours)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "La continuité des conversations avec les courriels est activée pour votre compte.",
diff --git a/app/javascript/dashboard/i18n/locale/fr/integrations.json b/app/javascript/dashboard/i18n/locale/fr/integrations.json
index 8e0558aaf..8a3341fc2 100644
--- a/app/javascript/dashboard/i18n/locale/fr/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/fr/integrations.json
@@ -334,7 +334,21 @@
"YOU": "Vous",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "Vous",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Nom",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Description",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/he/components.json b/app/javascript/dashboard/i18n/locale/he/components.json
index b57658b6b..d2855b661 100644
--- a/app/javascript/dashboard/i18n/locale/he/components.json
+++ b/app/javascript/dashboard/i18n/locale/he/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "למד עוד",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/he/generalSettings.json b/app/javascript/dashboard/i18n/locale/he/generalSettings.json
index 875fcc9de..6e5538efc 100644
--- a/app/javascript/dashboard/i18n/locale/he/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/he/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "מזהה חשבון",
"NOTE": "מזהה זה נדרש אם אתה בונה אינטגרציה מבוססת API"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "שם החשבון",
"PLACEHOLDER": "שם החשבון שלך",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "מספר הימים לאחר כרטיס אמור להיפתר אוטומטית אם אין פעילות",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "אנא הזן משך פתרון אוטומטי חוקי (מינימום יום אחד ומקסימום 999 ימים)"
+ "ERROR": "אנא הזן משך פתרון אוטומטי חוקי (מינימום יום אחד ומקסימום 999 ימים)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "רציפות השיחה עם הודעות אימייל מופעלת עבור החשבון שלך.",
diff --git a/app/javascript/dashboard/i18n/locale/he/integrations.json b/app/javascript/dashboard/i18n/locale/he/integrations.json
index da2c9fed5..405e453c6 100644
--- a/app/javascript/dashboard/i18n/locale/he/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/he/integrations.json
@@ -334,7 +334,21 @@
"YOU": "You",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "You",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "שם",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "תיאור",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/hi/components.json b/app/javascript/dashboard/i18n/locale/hi/components.json
index 99d5bce1f..dea9e6b1a 100644
--- a/app/javascript/dashboard/i18n/locale/hi/components.json
+++ b/app/javascript/dashboard/i18n/locale/hi/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Learn more",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/hi/generalSettings.json b/app/javascript/dashboard/i18n/locale/hi/generalSettings.json
index cfda6c7da..e586fe761 100644
--- a/app/javascript/dashboard/i18n/locale/hi/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/hi/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "Account ID",
"NOTE": "This ID is required if you are building an API based integration"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Account name",
"PLACEHOLDER": "Your account name",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Number of days after a ticket should auto resolve if there is no activity",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)"
+ "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "Conversation continuity with emails is enabled for your account.",
diff --git a/app/javascript/dashboard/i18n/locale/hi/integrations.json b/app/javascript/dashboard/i18n/locale/hi/integrations.json
index b8519af8e..01dbf5ef2 100644
--- a/app/javascript/dashboard/i18n/locale/hi/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/hi/integrations.json
@@ -334,7 +334,21 @@
"YOU": "You",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "You",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Name",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Description",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/hr/components.json b/app/javascript/dashboard/i18n/locale/hr/components.json
index 26f1c8f51..cd32e5822 100644
--- a/app/javascript/dashboard/i18n/locale/hr/components.json
+++ b/app/javascript/dashboard/i18n/locale/hr/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Learn more",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/hr/generalSettings.json b/app/javascript/dashboard/i18n/locale/hr/generalSettings.json
index f564e587f..1ea3f35b8 100644
--- a/app/javascript/dashboard/i18n/locale/hr/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/hr/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "Account ID",
"NOTE": "This ID is required if you are building an API based integration"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Account name",
"PLACEHOLDER": "Your account name",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Number of days after a ticket should auto resolve if there is no activity",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)"
+ "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "Conversation continuity with emails is enabled for your account.",
diff --git a/app/javascript/dashboard/i18n/locale/hr/integrations.json b/app/javascript/dashboard/i18n/locale/hr/integrations.json
index 8dde5e71c..71642872c 100644
--- a/app/javascript/dashboard/i18n/locale/hr/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/hr/integrations.json
@@ -334,7 +334,21 @@
"YOU": "Vi",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "Vi",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Ime",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Description",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/hu/components.json b/app/javascript/dashboard/i18n/locale/hu/components.json
index 2b57c01e9..f16dacaf8 100644
--- a/app/javascript/dashboard/i18n/locale/hu/components.json
+++ b/app/javascript/dashboard/i18n/locale/hu/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Tudj meg többet",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/hu/generalSettings.json b/app/javascript/dashboard/i18n/locale/hu/generalSettings.json
index 01215cee7..702605aa3 100644
--- a/app/javascript/dashboard/i18n/locale/hu/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/hu/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "Fiók Azonosító",
"NOTE": "Ez a személyazonosság akkor használható, ha API-alapú integrációt építesz"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Fióknév",
"PLACEHOLDER": "A fiókneved",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "A napok száma, mely után a ticketek automatikusan megoldódnak, ha nincs aktivitás",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Kérjük helyes auto feloldási időszakot adj meg (minimum 1 nap, maximum 999 nap)"
+ "ERROR": "Kérjük helyes auto feloldási időszakot adj meg (minimum 1 nap, maximum 999 nap)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "A beszélgetésfolytonosság e-maillel már elérhető a fiókodban.",
diff --git a/app/javascript/dashboard/i18n/locale/hu/integrations.json b/app/javascript/dashboard/i18n/locale/hu/integrations.json
index ef921584d..26f2edcd9 100644
--- a/app/javascript/dashboard/i18n/locale/hu/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/hu/integrations.json
@@ -334,7 +334,21 @@
"YOU": "Ön",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "Ön",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Név",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Leírás",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/hy/components.json b/app/javascript/dashboard/i18n/locale/hy/components.json
index c7230b1fc..e44c6e039 100644
--- a/app/javascript/dashboard/i18n/locale/hy/components.json
+++ b/app/javascript/dashboard/i18n/locale/hy/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Learn more",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/hy/generalSettings.json b/app/javascript/dashboard/i18n/locale/hy/generalSettings.json
index cfda6c7da..e586fe761 100644
--- a/app/javascript/dashboard/i18n/locale/hy/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/hy/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "Account ID",
"NOTE": "This ID is required if you are building an API based integration"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Account name",
"PLACEHOLDER": "Your account name",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Number of days after a ticket should auto resolve if there is no activity",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)"
+ "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "Conversation continuity with emails is enabled for your account.",
diff --git a/app/javascript/dashboard/i18n/locale/hy/integrations.json b/app/javascript/dashboard/i18n/locale/hy/integrations.json
index 90c27e381..5300c9239 100644
--- a/app/javascript/dashboard/i18n/locale/hy/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/hy/integrations.json
@@ -334,7 +334,21 @@
"YOU": "You",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "You",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Name",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Description",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/id/components.json b/app/javascript/dashboard/i18n/locale/id/components.json
index 04b44190e..4275c1226 100644
--- a/app/javascript/dashboard/i18n/locale/id/components.json
+++ b/app/javascript/dashboard/i18n/locale/id/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Pelajari lebih lanjut",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/id/generalSettings.json b/app/javascript/dashboard/i18n/locale/id/generalSettings.json
index 0b81a8ad6..8b6cb639f 100644
--- a/app/javascript/dashboard/i18n/locale/id/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/id/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "ID Akun",
"NOTE": "ID ini diperlukan jika Anda membangun integrasi berbasis API"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Nama Akun",
"PLACEHOLDER": "Nama akun Anda",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Jumlah hari setelah tiket harus diselesaikan secara otomatis jika tidak ada aktivitas",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Harap masukkan durasi penyelesaian otomatis yang valid (minimal 1 hari dan maksimal 999 hari)"
+ "ERROR": "Harap masukkan durasi penyelesaian otomatis yang valid (minimal 1 hari dan maksimal 999 hari)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "Kelanjutan percakapan dengan email diaktifkan untuk akun Anda.",
diff --git a/app/javascript/dashboard/i18n/locale/id/integrations.json b/app/javascript/dashboard/i18n/locale/id/integrations.json
index 6aa9c3e39..a7b5acf20 100644
--- a/app/javascript/dashboard/i18n/locale/id/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/id/integrations.json
@@ -334,7 +334,21 @@
"YOU": "Anda",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "Anda",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Nama",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Deskripsi",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/is/components.json b/app/javascript/dashboard/i18n/locale/is/components.json
index b79a1441c..d71ecd858 100644
--- a/app/javascript/dashboard/i18n/locale/is/components.json
+++ b/app/javascript/dashboard/i18n/locale/is/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Læra meira",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/is/generalSettings.json b/app/javascript/dashboard/i18n/locale/is/generalSettings.json
index 993ccaa37..1db062d0a 100644
--- a/app/javascript/dashboard/i18n/locale/is/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/is/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "Númer aðgangs",
"NOTE": "Þetta auðkenni er nauðsynlegt ef þú ert að byggja upp API byggða samþættingu"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Aðgangsnafn",
"PLACEHOLDER": "Þitt aðgangsnafn",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Fjöldi daga eftir miða ætti að leysast sjálfkrafa ef engin virkni er",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Vinsamlega sláðu inn gilda lengd sjálfvirkrar úrlausnar (lágmark 1 dagur og hámark 999 dagar)"
+ "ERROR": "Vinsamlega sláðu inn gilda lengd sjálfvirkrar úrlausnar (lágmark 1 dagur og hámark 999 dagar)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "Samfellu samtals með tölvupósti er virkjuð fyrir reikninginn þinn.",
diff --git a/app/javascript/dashboard/i18n/locale/is/integrations.json b/app/javascript/dashboard/i18n/locale/is/integrations.json
index 66394b0b9..c8407059c 100644
--- a/app/javascript/dashboard/i18n/locale/is/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/is/integrations.json
@@ -334,7 +334,21 @@
"YOU": "You",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "You",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Nafn",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Description",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/it/components.json b/app/javascript/dashboard/i18n/locale/it/components.json
index 5fdad88ac..c1d5dfd8b 100644
--- a/app/javascript/dashboard/i18n/locale/it/components.json
+++ b/app/javascript/dashboard/i18n/locale/it/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Scopri di più",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/it/generalSettings.json b/app/javascript/dashboard/i18n/locale/it/generalSettings.json
index cb9be746b..7768df6a0 100644
--- a/app/javascript/dashboard/i18n/locale/it/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/it/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "ID Account",
"NOTE": "Questo ID è richiesto se si sta costruendo un'integrazione basata su API"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Nome account",
"PLACEHOLDER": "Nome del tuo account",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Numero di giorni dopo che un ticket dovrebbe risolvere automaticamente se non c'è attività",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Inserisci una durata di risoluzione automatica valida (minimo 1 giorno e massimo 999 giorni)"
+ "ERROR": "Inserisci una durata di risoluzione automatica valida (minimo 1 giorno e massimo 999 giorni)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "La continuità della conversazione con le email è abilitata per il tuo account.",
diff --git a/app/javascript/dashboard/i18n/locale/it/integrations.json b/app/javascript/dashboard/i18n/locale/it/integrations.json
index 96530c13b..d7e5fe340 100644
--- a/app/javascript/dashboard/i18n/locale/it/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/it/integrations.json
@@ -334,7 +334,21 @@
"YOU": "You",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "You",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Nome",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Descrizione",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/ja/components.json b/app/javascript/dashboard/i18n/locale/ja/components.json
index 516a6090d..75ea91312 100644
--- a/app/javascript/dashboard/i18n/locale/ja/components.json
+++ b/app/javascript/dashboard/i18n/locale/ja/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "詳細を見る",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/ja/generalSettings.json b/app/javascript/dashboard/i18n/locale/ja/generalSettings.json
index 638e89405..43f1f1338 100644
--- a/app/javascript/dashboard/i18n/locale/ja/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/ja/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "アカウントID",
"NOTE": "APIベースの統合を構築する場合に必要なIDです"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "アカウント名",
"PLACEHOLDER": "あなたのアカウント名",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "アクティビティがない場合にチケットを自動解決するまでの日数",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "有効な自動解決期間を入力してください(最小1日、最大999日)"
+ "ERROR": "有効な自動解決期間を入力してください(最小1日、最大999日)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "あなたのアカウントでは、メールでの会話が継続可能です。",
diff --git a/app/javascript/dashboard/i18n/locale/ja/integrations.json b/app/javascript/dashboard/i18n/locale/ja/integrations.json
index a58570213..d346e6354 100644
--- a/app/javascript/dashboard/i18n/locale/ja/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/ja/integrations.json
@@ -334,7 +334,21 @@
"YOU": "あなた",
"USE": "これを使用",
"RESET": "リセット",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "あなた",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "名前",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "説明",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "製品名",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "製品名が必要です"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/ka/components.json b/app/javascript/dashboard/i18n/locale/ka/components.json
index c7230b1fc..e44c6e039 100644
--- a/app/javascript/dashboard/i18n/locale/ka/components.json
+++ b/app/javascript/dashboard/i18n/locale/ka/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Learn more",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/ka/generalSettings.json b/app/javascript/dashboard/i18n/locale/ka/generalSettings.json
index cfda6c7da..e586fe761 100644
--- a/app/javascript/dashboard/i18n/locale/ka/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/ka/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "Account ID",
"NOTE": "This ID is required if you are building an API based integration"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Account name",
"PLACEHOLDER": "Your account name",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Number of days after a ticket should auto resolve if there is no activity",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)"
+ "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "Conversation continuity with emails is enabled for your account.",
diff --git a/app/javascript/dashboard/i18n/locale/ka/integrations.json b/app/javascript/dashboard/i18n/locale/ka/integrations.json
index 90c27e381..5300c9239 100644
--- a/app/javascript/dashboard/i18n/locale/ka/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/ka/integrations.json
@@ -334,7 +334,21 @@
"YOU": "You",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "You",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Name",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Description",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/ko/components.json b/app/javascript/dashboard/i18n/locale/ko/components.json
index b258479e5..fa25dece7 100644
--- a/app/javascript/dashboard/i18n/locale/ko/components.json
+++ b/app/javascript/dashboard/i18n/locale/ko/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Learn more",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/ko/generalSettings.json b/app/javascript/dashboard/i18n/locale/ko/generalSettings.json
index 8355f3bc3..025203677 100644
--- a/app/javascript/dashboard/i18n/locale/ko/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/ko/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "Account ID",
"NOTE": "This ID is required if you are building an API based integration"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "계정 이름",
"PLACEHOLDER": "당신의 계정 이름",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "활동이 없는 경우 티켓이 자동으로 해결되는 일 수",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)"
+ "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "계정에 대해 이메일을 통한 대화 연속성이 활성화되었습니다.",
diff --git a/app/javascript/dashboard/i18n/locale/ko/integrations.json b/app/javascript/dashboard/i18n/locale/ko/integrations.json
index 258a150aa..57efa4fc8 100644
--- a/app/javascript/dashboard/i18n/locale/ko/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/ko/integrations.json
@@ -334,7 +334,21 @@
"YOU": "나",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "나",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "이름",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "내용",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/lt/components.json b/app/javascript/dashboard/i18n/locale/lt/components.json
index afa22a1f7..47b7bc6f5 100644
--- a/app/javascript/dashboard/i18n/locale/lt/components.json
+++ b/app/javascript/dashboard/i18n/locale/lt/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Sužinoti daugiau",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/lt/generalSettings.json b/app/javascript/dashboard/i18n/locale/lt/generalSettings.json
index 5a3187665..de1e474cb 100644
--- a/app/javascript/dashboard/i18n/locale/lt/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/lt/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "Paskyros ID",
"NOTE": "Šis ID reikalingas, jei kuriate API pagrįstą integraciją"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Paskyros vardas",
"PLACEHOLDER": "Tavo paskyros vardas",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Dienų skaičius, po kurio bilietas turi būti automatiškai uždarytas, jei nėra jokios veiklos",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Įveskite tinkamą automatinio išsprendimo trukmę (mažiausiai 1 diena ir daugiausia 999 dienos)"
+ "ERROR": "Įveskite tinkamą automatinio išsprendimo trukmę (mažiausiai 1 diena ir daugiausia 999 dienos)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "Jūsų paskyroje leistas pokalbių tęstinumas su el. laiškais.",
diff --git a/app/javascript/dashboard/i18n/locale/lt/integrations.json b/app/javascript/dashboard/i18n/locale/lt/integrations.json
index 4caf532bb..60bd7755a 100644
--- a/app/javascript/dashboard/i18n/locale/lt/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/lt/integrations.json
@@ -334,7 +334,21 @@
"YOU": "Jūs",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "Jūs",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Vardas",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Aprašymas",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/lv/components.json b/app/javascript/dashboard/i18n/locale/lv/components.json
index 7a46b278c..33f36c584 100644
--- a/app/javascript/dashboard/i18n/locale/lv/components.json
+++ b/app/javascript/dashboard/i18n/locale/lv/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Uzzināt vairāk",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/lv/generalSettings.json b/app/javascript/dashboard/i18n/locale/lv/generalSettings.json
index 0edaa876f..73080339e 100644
--- a/app/javascript/dashboard/i18n/locale/lv/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/lv/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "Konta ID",
"NOTE": "Šis ID ir nepieciešams, ja veidojat uz API balstītu integrāciju"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Konta nosaukums",
"PLACEHOLDER": "Jūsu konta nosaukums",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Dienu skaits pēc kā biļetei ir automātiski jāatrisinās, ja nenotiek nekādas darbības",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Lūdzu, ievadiet derīgu automātiskās atrisināšanas ilgumu (vismaz 1 diena un ne vairāk kā 999 dienas)"
+ "ERROR": "Lūdzu, ievadiet derīgu automātiskās atrisināšanas ilgumu (vismaz 1 diena un ne vairāk kā 999 dienas)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "Jūsu kontam ir iespējota sarunu nepārtrauktība ar e-pastiem.",
diff --git a/app/javascript/dashboard/i18n/locale/lv/integrations.json b/app/javascript/dashboard/i18n/locale/lv/integrations.json
index f162f7ab9..a9ae45efe 100644
--- a/app/javascript/dashboard/i18n/locale/lv/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/lv/integrations.json
@@ -334,7 +334,21 @@
"YOU": "Jūs",
"USE": "Izmantot šo",
"RESET": "Atiestatīt",
- "SELECT_ASSISTANT": "Izvēlēties Asistentu"
+ "SELECT_ASSISTANT": "Izvēlēties Asistentu",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "Jūs",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Nosaukums",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Apraksts",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Produkta Nosaukums",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "Nepieciešams produkta nosaukums"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/ml/components.json b/app/javascript/dashboard/i18n/locale/ml/components.json
index f810c1e56..c2d1dc756 100644
--- a/app/javascript/dashboard/i18n/locale/ml/components.json
+++ b/app/javascript/dashboard/i18n/locale/ml/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Learn more",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/ml/generalSettings.json b/app/javascript/dashboard/i18n/locale/ml/generalSettings.json
index 92ca11725..5762edb82 100644
--- a/app/javascript/dashboard/i18n/locale/ml/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/ml/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "Account ID",
"NOTE": "This ID is required if you are building an API based integration"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "അക്കൗണ്ടിന്റെ പേര്",
"PLACEHOLDER": "നിങ്ങളുടെ അക്കൗണ്ടിന്റെ പേര്",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "പ്രവർത്തനമൊന്നുമില്ലെങ്കിൽ ടിക്കറ്റിന് ശേഷമുള്ള ദിവസങ്ങളുടെ എണ്ണം യാന്ത്രികമായി പരിഹരിക്കേണ്ടതാണ്",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)"
+ "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "നിങ്ങളുടെ അക്കൗണ്ടിനായി ഇമെയിലുകളുമായുള്ള സംഭാഷണ തുടർച്ച പ്രവർത്തനക്ഷമമാക്കി.",
diff --git a/app/javascript/dashboard/i18n/locale/ml/integrations.json b/app/javascript/dashboard/i18n/locale/ml/integrations.json
index b08a033b2..239803cd5 100644
--- a/app/javascript/dashboard/i18n/locale/ml/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/ml/integrations.json
@@ -334,7 +334,21 @@
"YOU": "You",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "You",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "പേര്",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "വിവരണം",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/ms/components.json b/app/javascript/dashboard/i18n/locale/ms/components.json
index 6aa91cf7f..c0ad88921 100644
--- a/app/javascript/dashboard/i18n/locale/ms/components.json
+++ b/app/javascript/dashboard/i18n/locale/ms/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Learn more",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/ms/generalSettings.json b/app/javascript/dashboard/i18n/locale/ms/generalSettings.json
index 993cc338b..02a2dc675 100644
--- a/app/javascript/dashboard/i18n/locale/ms/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/ms/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "Account ID",
"NOTE": "This ID is required if you are building an API based integration"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Account name",
"PLACEHOLDER": "Your account name",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Number of days after a ticket should auto resolve if there is no activity",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)"
+ "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "Conversation continuity with emails is enabled for your account.",
diff --git a/app/javascript/dashboard/i18n/locale/ms/integrations.json b/app/javascript/dashboard/i18n/locale/ms/integrations.json
index 1691bad11..6d2b90acf 100644
--- a/app/javascript/dashboard/i18n/locale/ms/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/ms/integrations.json
@@ -334,7 +334,21 @@
"YOU": "You",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "You",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Nama",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Description",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/ne/components.json b/app/javascript/dashboard/i18n/locale/ne/components.json
index c7230b1fc..e44c6e039 100644
--- a/app/javascript/dashboard/i18n/locale/ne/components.json
+++ b/app/javascript/dashboard/i18n/locale/ne/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Learn more",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/ne/generalSettings.json b/app/javascript/dashboard/i18n/locale/ne/generalSettings.json
index cfda6c7da..e586fe761 100644
--- a/app/javascript/dashboard/i18n/locale/ne/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/ne/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "Account ID",
"NOTE": "This ID is required if you are building an API based integration"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Account name",
"PLACEHOLDER": "Your account name",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Number of days after a ticket should auto resolve if there is no activity",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)"
+ "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "Conversation continuity with emails is enabled for your account.",
diff --git a/app/javascript/dashboard/i18n/locale/ne/integrations.json b/app/javascript/dashboard/i18n/locale/ne/integrations.json
index 2504c6dde..dd959dc09 100644
--- a/app/javascript/dashboard/i18n/locale/ne/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/ne/integrations.json
@@ -334,7 +334,21 @@
"YOU": "You",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "You",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Name",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Description",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/nl/components.json b/app/javascript/dashboard/i18n/locale/nl/components.json
index 15f2825a7..5f52637d7 100644
--- a/app/javascript/dashboard/i18n/locale/nl/components.json
+++ b/app/javascript/dashboard/i18n/locale/nl/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Learn more",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/nl/generalSettings.json b/app/javascript/dashboard/i18n/locale/nl/generalSettings.json
index 465fc8a8c..9f353955c 100644
--- a/app/javascript/dashboard/i18n/locale/nl/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/nl/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "Account ID",
"NOTE": "This ID is required if you are building an API based integration"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "accountnaam",
"PLACEHOLDER": "Uw accountnaam",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Number of days after a ticket should auto resolve if there is no activity",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)"
+ "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "Conversation continuity with emails is enabled for your account.",
diff --git a/app/javascript/dashboard/i18n/locale/nl/integrations.json b/app/javascript/dashboard/i18n/locale/nl/integrations.json
index 31bb4efc8..b80ce0712 100644
--- a/app/javascript/dashboard/i18n/locale/nl/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/nl/integrations.json
@@ -334,7 +334,21 @@
"YOU": "Jij",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "Jij",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Naam",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Beschrijving",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/no/components.json b/app/javascript/dashboard/i18n/locale/no/components.json
index 2ec8d7dae..2e9776e1f 100644
--- a/app/javascript/dashboard/i18n/locale/no/components.json
+++ b/app/javascript/dashboard/i18n/locale/no/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Learn more",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/no/generalSettings.json b/app/javascript/dashboard/i18n/locale/no/generalSettings.json
index fa164f7c5..9aefa3d13 100644
--- a/app/javascript/dashboard/i18n/locale/no/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/no/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "Account ID",
"NOTE": "This ID is required if you are building an API based integration"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Kontonavn",
"PLACEHOLDER": "Ditt kontonavn",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Antall dager en sak skal løses automatisk hvis det ikke har vært aktivitet",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)"
+ "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "Samtalekontinuitet med e-post er aktivert for din konto.",
diff --git a/app/javascript/dashboard/i18n/locale/no/integrations.json b/app/javascript/dashboard/i18n/locale/no/integrations.json
index 90f2c1b8a..0d0a80e97 100644
--- a/app/javascript/dashboard/i18n/locale/no/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/no/integrations.json
@@ -334,7 +334,21 @@
"YOU": "Du",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "Du",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Navn",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Beskrivelse",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/pl/components.json b/app/javascript/dashboard/i18n/locale/pl/components.json
index 2cf9539b1..dc56b980b 100644
--- a/app/javascript/dashboard/i18n/locale/pl/components.json
+++ b/app/javascript/dashboard/i18n/locale/pl/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Dowiedz się więcej",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/pl/generalSettings.json b/app/javascript/dashboard/i18n/locale/pl/generalSettings.json
index d1c9bb3c2..5acdeeab5 100644
--- a/app/javascript/dashboard/i18n/locale/pl/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/pl/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "ID konta",
"NOTE": "To ID jest wymagane, jeśli tworzysz integrację opartą na API"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Nazwa konta",
"PLACEHOLDER": "Nazwa konta",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Liczba dni po upływie których rozmowa powinna zostać automatycznie zamknięta z powodu braku aktywności",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Wprowadź poprawną wartość dla czasu automatycznego zamykania rozmów (minimum 1 dzień, maksimum 999 dni)"
+ "ERROR": "Wprowadź poprawną wartość dla czasu automatycznego zamykania rozmów (minimum 1 dzień, maksimum 999 dni)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "Kontynuacja rozmów za pomocą wiadomości e-mail jest włączona dla Twojego konta.",
diff --git a/app/javascript/dashboard/i18n/locale/pl/integrations.json b/app/javascript/dashboard/i18n/locale/pl/integrations.json
index b45fb8152..7edd5db6e 100644
--- a/app/javascript/dashboard/i18n/locale/pl/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/pl/integrations.json
@@ -334,7 +334,21 @@
"YOU": "You",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "You",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Imię",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Opis",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/pt/components.json b/app/javascript/dashboard/i18n/locale/pt/components.json
index cd5b970a3..df71ba7e8 100644
--- a/app/javascript/dashboard/i18n/locale/pt/components.json
+++ b/app/javascript/dashboard/i18n/locale/pt/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Saber mais",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/pt/generalSettings.json b/app/javascript/dashboard/i18n/locale/pt/generalSettings.json
index 61a09f0f9..caf2dd990 100644
--- a/app/javascript/dashboard/i18n/locale/pt/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/pt/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "ID da conta",
"NOTE": "Este ID é necessário para integrações via API"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Nome da conta",
"PLACEHOLDER": "Nome da sua conta",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Número de dias sem nenhuma atividade, após os quais o ticket se auto-resolve",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Por favor, indique um período de resolução automática válido (mínimo de 1 dia e máximo de 999 dias)"
+ "ERROR": "Por favor, indique um período de resolução automática válido (mínimo de 1 dia e máximo de 999 dias)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "A sua conta tem a opção de continuar as conversas por e-mail ativa.",
diff --git a/app/javascript/dashboard/i18n/locale/pt/integrations.json b/app/javascript/dashboard/i18n/locale/pt/integrations.json
index 794385023..eabf9e01d 100644
--- a/app/javascript/dashboard/i18n/locale/pt/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/pt/integrations.json
@@ -334,7 +334,21 @@
"YOU": "Você",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "Você",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Nome:",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Descrição",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/pt_BR/components.json b/app/javascript/dashboard/i18n/locale/pt_BR/components.json
index bf3330bac..e877c4f24 100644
--- a/app/javascript/dashboard/i18n/locale/pt_BR/components.json
+++ b/app/javascript/dashboard/i18n/locale/pt_BR/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Saiba mais",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutos",
+ "HOURS": "Horas",
+ "DAYS": "Dias",
+ "PLACEHOLDER": "Insira a duração"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/pt_BR/generalSettings.json b/app/javascript/dashboard/i18n/locale/pt_BR/generalSettings.json
index 785612ab3..a08336e6c 100644
--- a/app/javascript/dashboard/i18n/locale/pt_BR/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/pt_BR/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "ID da Conta",
"NOTE": "Este ID é necessário se você está construindo uma integração baseada em API"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Resolver conversas automaticamente",
+ "NOTE": "Essa configuração permitirá que você finalize automaticamente a conversa após um determinado período. Defina abaixo a duração e personalize a mensagem para o usuário."
+ },
"NAME": {
"LABEL": "Nome da Conta",
"PLACEHOLDER": "Nome da sua conta",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Depois de quantos dias um ticket deve se resolver mesmo caso não haja nenhuma atividade",
+ "LABEL": "Tempo de inatividade para resolução",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Por favor, insira um período de resolução automática válido (mínimo de 1 dia e máximo de 999 dias)"
+ "ERROR": "Por favor, insira um período de resolução automática válido (mínimo de 1 dia e máximo de 999 dias)",
+ "API": {
+ "SUCCESS": "Configurações de resolução automática atualizadas com sucesso",
+ "ERROR": "Falha ao atualizar as configurações de resolução automática"
+ },
+ "UPDATE_BUTTON": "Atualizar resolução automática",
+ "MESSAGE_LABEL": "Mensagem de resolução personalizada",
+ "MESSAGE_PLACEHOLDER": "A conversa foi marcada como resolvida pelo sistema por ter 15 dias de inatividade",
+ "MESSAGE_HELP": "Esta mensagem é enviada ao cliente quando uma conversa é resolvida automaticamente pelo sistema devido à inatividade."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "A continuidade das conversas com e-mails está ativada para sua conta.",
diff --git a/app/javascript/dashboard/i18n/locale/pt_BR/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/pt_BR/inboxMgmt.json
index 3b7526529..a49bc6b7e 100644
--- a/app/javascript/dashboard/i18n/locale/pt_BR/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/pt_BR/inboxMgmt.json
@@ -242,8 +242,8 @@
"ERROR": "Por favor, insira um valor válido."
},
"BUSINESS_ACCOUNT_ID": {
- "LABEL": "ID da Conta de Negócios",
- "PLACEHOLDER": "Por favor, insira o ID da Conta de Negócios obtido do painel do desenvolvedor do Facebook.",
+ "LABEL": "ID da conta do WhatsApp Business",
+ "PLACEHOLDER": "Por favor, insira o ID da conta do WhatsApp Business obtido do painel do desenvolvedor do Facebook.",
"ERROR": "Por favor, insira um valor válido."
},
"WEBHOOK_VERIFY_TOKEN": {
diff --git a/app/javascript/dashboard/i18n/locale/pt_BR/integrations.json b/app/javascript/dashboard/i18n/locale/pt_BR/integrations.json
index 3dad66edd..a0f15b766 100644
--- a/app/javascript/dashboard/i18n/locale/pt_BR/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/pt_BR/integrations.json
@@ -334,7 +334,21 @@
"YOU": "Você",
"USE": "Use isto",
"RESET": "Reiniciar",
- "SELECT_ASSISTANT": "Selecione o Assistente"
+ "SELECT_ASSISTANT": "Selecione o Assistente",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Resumir esta conversa",
+ "CONTENT": "Resuma os pontos-chave discutidos entre o cliente e o agente de suporte, incluindo as preocupações do cliente, as questões e as soluções ou respostas dadas pelo agente de suporte"
+ },
+ "SUGGEST": {
+ "LABEL": "Sugerir uma resposta",
+ "CONTENT": "Analise a pergunta do cliente e elabore uma resposta que responda efetivamente às suas preocupações ou perguntas. Certifique-se de que a resposta seja clara, concisa e forneça informações úteis."
+ },
+ "RATE": {
+ "LABEL": "Avaliar esta conversa",
+ "CONTENT": "Revise a conversa para ver o quanto ela atende às necessidades do cliente. Compartilhe uma classificação de 0 a 5 com base em tom, clareza e eficácia."
+ }
+ }
},
"PLAYGROUND": {
"USER": "Você",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Nome",
- "PLACEHOLDER": "Digite o nome do assistente"
+ "PLACEHOLDER": "Digite o nome do assistente",
+ "ERROR": "O nome é obrigatório"
},
"DESCRIPTION": {
"LABEL": "Descrição",
- "PLACEHOLDER": "Digite a descrição do assistente"
+ "PLACEHOLDER": "Digite a descrição do assistente",
+ "ERROR": "A descrição é obrigatória"
},
"PRODUCT_NAME": {
"LABEL": "Nome do Produto",
- "PLACEHOLDER": "Digite o nome do produto"
+ "PLACEHOLDER": "Digite o nome do produto",
+ "ERROR": "O nome do produto é obrigatório"
},
"WELCOME_MESSAGE": {
"LABEL": "Mensagem de boas-vindas",
diff --git a/app/javascript/dashboard/i18n/locale/ro/components.json b/app/javascript/dashboard/i18n/locale/ro/components.json
index 03d4a2391..5be9ed8ab 100644
--- a/app/javascript/dashboard/i18n/locale/ro/components.json
+++ b/app/javascript/dashboard/i18n/locale/ro/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Află mai mult",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/ro/generalSettings.json b/app/javascript/dashboard/i18n/locale/ro/generalSettings.json
index b9badadd9..51ead4b23 100644
--- a/app/javascript/dashboard/i18n/locale/ro/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/ro/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "ID cont",
"NOTE": "Acest ID este necesar dacă construiți o integrare bazată pe API"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Nume cont",
"PLACEHOLDER": "Numele contului tău",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Numărul de zile de pe bilet ar trebui să se rezolve automat dacă nu există activitate",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Vă rugăm să introduceți o durată validă de rezolvare automată (minim 1 zi și maximum 999 de zile)"
+ "ERROR": "Vă rugăm să introduceți o durată validă de rezolvare automată (minim 1 zi și maximum 999 de zile)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "Continuitatea conversației cu e-mailurile este activată pentru contul dvs.",
diff --git a/app/javascript/dashboard/i18n/locale/ro/integrations.json b/app/javascript/dashboard/i18n/locale/ro/integrations.json
index a15b6d704..38340d476 100644
--- a/app/javascript/dashboard/i18n/locale/ro/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/ro/integrations.json
@@ -334,7 +334,21 @@
"YOU": "You",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "You",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Nume",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Descriere",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/ru/components.json b/app/javascript/dashboard/i18n/locale/ru/components.json
index 3e3cb1aad..92890e3e0 100644
--- a/app/javascript/dashboard/i18n/locale/ru/components.json
+++ b/app/javascript/dashboard/i18n/locale/ru/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Узнайте больше",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/ru/generalSettings.json b/app/javascript/dashboard/i18n/locale/ru/generalSettings.json
index d8f0610d8..00c056536 100644
--- a/app/javascript/dashboard/i18n/locale/ru/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/ru/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "ID аккаунта",
"NOTE": "Этот ID требуется для построения интеграции, основанной на API"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Имя аккаунта",
"PLACEHOLDER": "Имя вашего аккаунта",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Количество дней после того, как тикет будет автоматически решен, если нет активности",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Введите корректную длительность для автозавершения диалога (минимум 1 день, максимум 999)"
+ "ERROR": "Введите корректную длительность для автозавершения диалога (минимум 1 день, максимум 999)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "Для вашего аккаунта включено продолжение диалогов по электронной почте.",
diff --git a/app/javascript/dashboard/i18n/locale/ru/integrations.json b/app/javascript/dashboard/i18n/locale/ru/integrations.json
index f1c08812a..cf4a3286a 100644
--- a/app/javascript/dashboard/i18n/locale/ru/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/ru/integrations.json
@@ -334,7 +334,21 @@
"YOU": "Вы",
"USE": "Использовать это",
"RESET": "Сброс",
- "SELECT_ASSISTANT": "Выбрать ассистента"
+ "SELECT_ASSISTANT": "Выбрать ассистента",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "Вы",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Имя",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Описание",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Название продукта",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "Требуется название продукта"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/sh/components.json b/app/javascript/dashboard/i18n/locale/sh/components.json
index c7230b1fc..e44c6e039 100644
--- a/app/javascript/dashboard/i18n/locale/sh/components.json
+++ b/app/javascript/dashboard/i18n/locale/sh/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Learn more",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/sh/generalSettings.json b/app/javascript/dashboard/i18n/locale/sh/generalSettings.json
index cfda6c7da..e586fe761 100644
--- a/app/javascript/dashboard/i18n/locale/sh/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/sh/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "Account ID",
"NOTE": "This ID is required if you are building an API based integration"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Account name",
"PLACEHOLDER": "Your account name",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Number of days after a ticket should auto resolve if there is no activity",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)"
+ "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "Conversation continuity with emails is enabled for your account.",
diff --git a/app/javascript/dashboard/i18n/locale/sh/integrations.json b/app/javascript/dashboard/i18n/locale/sh/integrations.json
index 90c27e381..5300c9239 100644
--- a/app/javascript/dashboard/i18n/locale/sh/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/sh/integrations.json
@@ -334,7 +334,21 @@
"YOU": "You",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "You",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Name",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Description",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/sk/components.json b/app/javascript/dashboard/i18n/locale/sk/components.json
index c03937260..8c705e06d 100644
--- a/app/javascript/dashboard/i18n/locale/sk/components.json
+++ b/app/javascript/dashboard/i18n/locale/sk/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Learn more",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/sk/generalSettings.json b/app/javascript/dashboard/i18n/locale/sk/generalSettings.json
index c598577c5..338c92cb5 100644
--- a/app/javascript/dashboard/i18n/locale/sk/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/sk/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "ID účtu",
"NOTE": "Toto ID je potrebné, ak vytvárate integráciu založenú na rozhraní API"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Názov účtu",
"PLACEHOLDER": "Názov vášho účtu",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Počet dní po automatickom vyriešení tiketu, ak sa nevykonáva žiadna aktivita",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)"
+ "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "Pre vaše konto je povolená kontinuita konverzácie s e-mailami.",
diff --git a/app/javascript/dashboard/i18n/locale/sk/integrations.json b/app/javascript/dashboard/i18n/locale/sk/integrations.json
index 608cf2337..d04a971ff 100644
--- a/app/javascript/dashboard/i18n/locale/sk/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/sk/integrations.json
@@ -334,7 +334,21 @@
"YOU": "Vy",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "Vy",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Meno",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Description",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/sl/components.json b/app/javascript/dashboard/i18n/locale/sl/components.json
index d4707b1eb..52d6109e1 100644
--- a/app/javascript/dashboard/i18n/locale/sl/components.json
+++ b/app/javascript/dashboard/i18n/locale/sl/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Learn more",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/sl/generalSettings.json b/app/javascript/dashboard/i18n/locale/sl/generalSettings.json
index cfda6c7da..e586fe761 100644
--- a/app/javascript/dashboard/i18n/locale/sl/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/sl/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "Account ID",
"NOTE": "This ID is required if you are building an API based integration"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Account name",
"PLACEHOLDER": "Your account name",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Number of days after a ticket should auto resolve if there is no activity",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)"
+ "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "Conversation continuity with emails is enabled for your account.",
diff --git a/app/javascript/dashboard/i18n/locale/sl/integrations.json b/app/javascript/dashboard/i18n/locale/sl/integrations.json
index c15d92b1a..d225f442e 100644
--- a/app/javascript/dashboard/i18n/locale/sl/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/sl/integrations.json
@@ -334,7 +334,21 @@
"YOU": "Vi",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "Vi",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Name",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Description",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/sq/components.json b/app/javascript/dashboard/i18n/locale/sq/components.json
index c7230b1fc..e44c6e039 100644
--- a/app/javascript/dashboard/i18n/locale/sq/components.json
+++ b/app/javascript/dashboard/i18n/locale/sq/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Learn more",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/sq/generalSettings.json b/app/javascript/dashboard/i18n/locale/sq/generalSettings.json
index cfda6c7da..e586fe761 100644
--- a/app/javascript/dashboard/i18n/locale/sq/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/sq/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "Account ID",
"NOTE": "This ID is required if you are building an API based integration"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Account name",
"PLACEHOLDER": "Your account name",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Number of days after a ticket should auto resolve if there is no activity",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)"
+ "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "Conversation continuity with emails is enabled for your account.",
diff --git a/app/javascript/dashboard/i18n/locale/sq/integrations.json b/app/javascript/dashboard/i18n/locale/sq/integrations.json
index dc4d77681..36826d0db 100644
--- a/app/javascript/dashboard/i18n/locale/sq/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/sq/integrations.json
@@ -334,7 +334,21 @@
"YOU": "Ju",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "Ju",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Name",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Description",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/sr/components.json b/app/javascript/dashboard/i18n/locale/sr/components.json
index 42a86f093..f78a78497 100644
--- a/app/javascript/dashboard/i18n/locale/sr/components.json
+++ b/app/javascript/dashboard/i18n/locale/sr/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Saznajte više",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/sr/generalSettings.json b/app/javascript/dashboard/i18n/locale/sr/generalSettings.json
index 4ab3baaf8..6269f50f6 100644
--- a/app/javascript/dashboard/i18n/locale/sr/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/sr/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "ID naloga",
"NOTE": "Ovaj ID je neophodan ako izgrađujete integraciju zasnovanu na API-ju"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Naziv naloga",
"PLACEHOLDER": "Naziv vašeg naloga",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Broj dana nakon čega će se tiket automatski rešiti ako nema aktivnosti",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Molim vas unesite ispravno trajanje za automatsko rešavanje (minimalno 1 dan i maksimalno 999 dana)"
+ "ERROR": "Molim vas unesite ispravno trajanje za automatsko rešavanje (minimalno 1 dan i maksimalno 999 dana)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "Nastavljanje razgovora putem e-poruka je omogućeno za vaš nalog.",
diff --git a/app/javascript/dashboard/i18n/locale/sr/integrations.json b/app/javascript/dashboard/i18n/locale/sr/integrations.json
index 4eb10c036..8af9a3b60 100644
--- a/app/javascript/dashboard/i18n/locale/sr/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/sr/integrations.json
@@ -334,7 +334,21 @@
"YOU": "You",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "You",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Ime",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Opis",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/sv/components.json b/app/javascript/dashboard/i18n/locale/sv/components.json
index fe14f7b45..bd0548eed 100644
--- a/app/javascript/dashboard/i18n/locale/sv/components.json
+++ b/app/javascript/dashboard/i18n/locale/sv/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Läs mer",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/sv/generalSettings.json b/app/javascript/dashboard/i18n/locale/sv/generalSettings.json
index f0bb3a031..d618a5977 100644
--- a/app/javascript/dashboard/i18n/locale/sv/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/sv/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "Account ID",
"NOTE": "This ID is required if you are building an API based integration"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Kontonamn",
"PLACEHOLDER": "Ditt kontonamn",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Antal dagar till ett ärende ska automatlösas på grund av inaktivitet",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)"
+ "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "Konversationskontinuitet med e-post är aktiverat för ditt konto.",
diff --git a/app/javascript/dashboard/i18n/locale/sv/integrations.json b/app/javascript/dashboard/i18n/locale/sv/integrations.json
index 3947f53ff..8fd861823 100644
--- a/app/javascript/dashboard/i18n/locale/sv/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/sv/integrations.json
@@ -334,7 +334,21 @@
"YOU": "Du",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "Du",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Namn",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Beskrivning",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/ta/components.json b/app/javascript/dashboard/i18n/locale/ta/components.json
index 59a7ddec1..4adf87ecf 100644
--- a/app/javascript/dashboard/i18n/locale/ta/components.json
+++ b/app/javascript/dashboard/i18n/locale/ta/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Learn more",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/ta/generalSettings.json b/app/javascript/dashboard/i18n/locale/ta/generalSettings.json
index 806674316..c22bae67f 100644
--- a/app/javascript/dashboard/i18n/locale/ta/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/ta/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "Account ID",
"NOTE": "This ID is required if you are building an API based integration"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "கணக்கின் பெயர்",
"PLACEHOLDER": "உங்கள் கணக்கின் பெயர்",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Number of days after a ticket should auto resolve if there is no activity",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)"
+ "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "Conversation continuity with emails is enabled for your account.",
diff --git a/app/javascript/dashboard/i18n/locale/ta/integrations.json b/app/javascript/dashboard/i18n/locale/ta/integrations.json
index db8393bdf..10643fec2 100644
--- a/app/javascript/dashboard/i18n/locale/ta/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/ta/integrations.json
@@ -334,7 +334,21 @@
"YOU": "You",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "You",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "பெயர்",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Description",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/th/components.json b/app/javascript/dashboard/i18n/locale/th/components.json
index f20c1e3fd..93cf557c3 100644
--- a/app/javascript/dashboard/i18n/locale/th/components.json
+++ b/app/javascript/dashboard/i18n/locale/th/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "เรียนรู้เพิ่มเติม",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/th/generalSettings.json b/app/javascript/dashboard/i18n/locale/th/generalSettings.json
index 677d5633f..a792627de 100644
--- a/app/javascript/dashboard/i18n/locale/th/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/th/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "หมายเลขบัญชี",
"NOTE": "โปรดระบุหมายเลขบัญชีหากคุณต้องการเชื่อมต่อกับ API"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "ชื่อบัญชี",
"PLACEHOLDER": "ชื่อบัญชีของคุณ",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "จำนวนวันที่จะเปลี่ยนสถานะเป็นสำเร็จถ้าไม่มีความเคลื่อนไหว",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "โปรดระบุช่วงเวลาในการปิดการสนทนาอัตโนมัติให้ถูกต้อง (ขั้นต่ำ 1 วัน มากสุด 999 วัน)"
+ "ERROR": "โปรดระบุช่วงเวลาในการปิดการสนทนาอัตโนมัติให้ถูกต้อง (ขั้นต่ำ 1 วัน มากสุด 999 วัน)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "การสนทนาด้วยอีเมล์ถูกเปิดสำหรับบัญชีของคุณ",
diff --git a/app/javascript/dashboard/i18n/locale/th/integrations.json b/app/javascript/dashboard/i18n/locale/th/integrations.json
index 7cb4345ac..a1d92a1a4 100644
--- a/app/javascript/dashboard/i18n/locale/th/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/th/integrations.json
@@ -334,7 +334,21 @@
"YOU": "You",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "You",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "ชื่อ",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "คำอธิบาย",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/tl/components.json b/app/javascript/dashboard/i18n/locale/tl/components.json
index c7230b1fc..e44c6e039 100644
--- a/app/javascript/dashboard/i18n/locale/tl/components.json
+++ b/app/javascript/dashboard/i18n/locale/tl/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Learn more",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/tl/generalSettings.json b/app/javascript/dashboard/i18n/locale/tl/generalSettings.json
index cfda6c7da..e586fe761 100644
--- a/app/javascript/dashboard/i18n/locale/tl/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/tl/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "Account ID",
"NOTE": "This ID is required if you are building an API based integration"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Account name",
"PLACEHOLDER": "Your account name",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Number of days after a ticket should auto resolve if there is no activity",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)"
+ "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "Conversation continuity with emails is enabled for your account.",
diff --git a/app/javascript/dashboard/i18n/locale/tl/integrations.json b/app/javascript/dashboard/i18n/locale/tl/integrations.json
index fa46b1900..f1a1d42c2 100644
--- a/app/javascript/dashboard/i18n/locale/tl/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/tl/integrations.json
@@ -334,7 +334,21 @@
"YOU": "You",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "You",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Name",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Description",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/tr/components.json b/app/javascript/dashboard/i18n/locale/tr/components.json
index a6611ad40..c047c1c85 100644
--- a/app/javascript/dashboard/i18n/locale/tr/components.json
+++ b/app/javascript/dashboard/i18n/locale/tr/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Daha Fazla",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/tr/generalSettings.json b/app/javascript/dashboard/i18n/locale/tr/generalSettings.json
index 1a7be9302..5de8f51f2 100644
--- a/app/javascript/dashboard/i18n/locale/tr/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/tr/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "Hesap Kimliği",
"NOTE": "API tabanlı bir entegrasyon oluşturuyorsanız bu kimlik gereklidir"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Hesap Adı",
"PLACEHOLDER": "Hesap adınız",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Etkinlik yoksa, bir biletin otomatik olarak çözülmesi gereken gün sayısı",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Lütfen geçerli bir otomatik çözüm süresi girin (minimum 1 gün ve maksimum 999 gün)"
+ "ERROR": "Lütfen geçerli bir otomatik çözüm süresi girin (minimum 1 gün ve maksimum 999 gün)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "Hesabınız için e-posta ile iletişim devre dışı bırakıldı.",
diff --git a/app/javascript/dashboard/i18n/locale/tr/integrations.json b/app/javascript/dashboard/i18n/locale/tr/integrations.json
index 4b34583ba..9d18d873d 100644
--- a/app/javascript/dashboard/i18n/locale/tr/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/tr/integrations.json
@@ -334,7 +334,21 @@
"YOU": "Sen",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "Sen",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "İsim",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Açıklama",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/uk/components.json b/app/javascript/dashboard/i18n/locale/uk/components.json
index aab333184..22395ecc6 100644
--- a/app/javascript/dashboard/i18n/locale/uk/components.json
+++ b/app/javascript/dashboard/i18n/locale/uk/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Детальніше",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/uk/generalSettings.json b/app/javascript/dashboard/i18n/locale/uk/generalSettings.json
index ae8bc398d..313e2b1d6 100644
--- a/app/javascript/dashboard/i18n/locale/uk/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/uk/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "ID акаунту",
"NOTE": "Цей ID необхідний, якщо ви створюєте інтеграцію з API"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Назва облікового запису",
"PLACEHOLDER": "Ім'я вашого облікового запису",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Кількість днів після того, як заявка повинна автоматично буде закрита, якщо немає активності",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Будь ласка, введіть допустиму тривалість автозакртиття (мінімум 1 день і максимум 999 днів)"
+ "ERROR": "Будь ласка, введіть допустиму тривалість автозакртиття (мінімум 1 день і максимум 999 днів)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "Продовження діалогу з е-поштою активоване для вашого облікового запису.",
diff --git a/app/javascript/dashboard/i18n/locale/uk/integrations.json b/app/javascript/dashboard/i18n/locale/uk/integrations.json
index b357294bd..0da64bbaa 100644
--- a/app/javascript/dashboard/i18n/locale/uk/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/uk/integrations.json
@@ -334,7 +334,21 @@
"YOU": "Ви",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "Ви",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Ім'я",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Опис",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/ur/components.json b/app/javascript/dashboard/i18n/locale/ur/components.json
index 081b19bb3..02df3a635 100644
--- a/app/javascript/dashboard/i18n/locale/ur/components.json
+++ b/app/javascript/dashboard/i18n/locale/ur/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Learn more",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/ur/generalSettings.json b/app/javascript/dashboard/i18n/locale/ur/generalSettings.json
index 16864e8a1..47ad0b1ff 100644
--- a/app/javascript/dashboard/i18n/locale/ur/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/ur/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "Account ID",
"NOTE": "This ID is required if you are building an API based integration"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Account name",
"PLACEHOLDER": "Your account name",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Number of days after a ticket should auto resolve if there is no activity",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)"
+ "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "Conversation continuity with emails is enabled for your account.",
diff --git a/app/javascript/dashboard/i18n/locale/ur/integrations.json b/app/javascript/dashboard/i18n/locale/ur/integrations.json
index ddaa0a2bf..914adced3 100644
--- a/app/javascript/dashboard/i18n/locale/ur/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/ur/integrations.json
@@ -334,7 +334,21 @@
"YOU": "You",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "You",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "نام",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Description",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/ur_IN/components.json b/app/javascript/dashboard/i18n/locale/ur_IN/components.json
index c7230b1fc..e44c6e039 100644
--- a/app/javascript/dashboard/i18n/locale/ur_IN/components.json
+++ b/app/javascript/dashboard/i18n/locale/ur_IN/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Learn more",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/ur_IN/generalSettings.json b/app/javascript/dashboard/i18n/locale/ur_IN/generalSettings.json
index cfda6c7da..e586fe761 100644
--- a/app/javascript/dashboard/i18n/locale/ur_IN/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/ur_IN/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "Account ID",
"NOTE": "This ID is required if you are building an API based integration"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Account name",
"PLACEHOLDER": "Your account name",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Number of days after a ticket should auto resolve if there is no activity",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)"
+ "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "Conversation continuity with emails is enabled for your account.",
diff --git a/app/javascript/dashboard/i18n/locale/ur_IN/integrations.json b/app/javascript/dashboard/i18n/locale/ur_IN/integrations.json
index 90c27e381..5300c9239 100644
--- a/app/javascript/dashboard/i18n/locale/ur_IN/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/ur_IN/integrations.json
@@ -334,7 +334,21 @@
"YOU": "You",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "You",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Name",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Description",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/vi/components.json b/app/javascript/dashboard/i18n/locale/vi/components.json
index cb1ea956b..d7fdcc472 100644
--- a/app/javascript/dashboard/i18n/locale/vi/components.json
+++ b/app/javascript/dashboard/i18n/locale/vi/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Tìm hiểu thêm",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/vi/generalSettings.json b/app/javascript/dashboard/i18n/locale/vi/generalSettings.json
index e7ec0d341..09745536f 100644
--- a/app/javascript/dashboard/i18n/locale/vi/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/vi/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "Tài khoản SID",
"NOTE": "ID này là bắt buộc nếu bạn đang xây dựng tích hợp dựa trên API"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "Tên tài khoản",
"PLACEHOLDER": "Tên tài khoản của bạn",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Số ngày sau đó mà vé sẽ tự động giải quyết nếu không có hoạt động nào",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Vui lòng điền thời lượng tự động giải quyết hợp lệ (tối thiểu 1 ngày và tối đa 999 ngày)"
+ "ERROR": "Vui lòng điền thời lượng tự động giải quyết hợp lệ (tối thiểu 1 ngày và tối đa 999 ngày)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "Tính liên tục của cuộc trò chuyện với email được kích hoạt cho tài khoản của bạn.",
diff --git a/app/javascript/dashboard/i18n/locale/vi/integrations.json b/app/javascript/dashboard/i18n/locale/vi/integrations.json
index b077b8da3..8cdd6c425 100644
--- a/app/javascript/dashboard/i18n/locale/vi/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/vi/integrations.json
@@ -334,7 +334,21 @@
"YOU": "You",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "You",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "Tên",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "Mô tả",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/zh_CN/components.json b/app/javascript/dashboard/i18n/locale/zh_CN/components.json
index 72dc74dfa..8be474f93 100644
--- a/app/javascript/dashboard/i18n/locale/zh_CN/components.json
+++ b/app/javascript/dashboard/i18n/locale/zh_CN/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "了解更多",
"WATCH_VIDEO": "观看视频"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/zh_CN/generalSettings.json b/app/javascript/dashboard/i18n/locale/zh_CN/generalSettings.json
index 2e3ecafaf..c3b954dda 100644
--- a/app/javascript/dashboard/i18n/locale/zh_CN/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/zh_CN/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "账号 ID",
"NOTE": "如果您正在构建基于 API 的集成,那么此 ID 是必需的"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "帐户名称",
"PLACEHOLDER": "您的帐户名称",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "非活跃工单的自动结单的天数",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "请输入一个有效的自动解决时间 (至少 1 天,最多999 天)。"
+ "ERROR": "请输入一个有效的自动解决时间 (至少 1 天,最多999 天)。",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "您的帐户启用了与电子邮件的对话连续性。",
diff --git a/app/javascript/dashboard/i18n/locale/zh_CN/integrations.json b/app/javascript/dashboard/i18n/locale/zh_CN/integrations.json
index a41eb6cde..1c13783c8 100644
--- a/app/javascript/dashboard/i18n/locale/zh_CN/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/zh_CN/integrations.json
@@ -334,7 +334,21 @@
"YOU": "您",
"USE": "使用此",
"RESET": "重置",
- "SELECT_ASSISTANT": "选择助手"
+ "SELECT_ASSISTANT": "选择助手",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "您",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "姓名:",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "描述信息",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "产品名称",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "产品名称是必需的"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/i18n/locale/zh_TW/components.json b/app/javascript/dashboard/i18n/locale/zh_TW/components.json
index 8631ab450..9d4176c48 100644
--- a/app/javascript/dashboard/i18n/locale/zh_TW/components.json
+++ b/app/javascript/dashboard/i18n/locale/zh_TW/components.json
@@ -43,5 +43,11 @@
"FEATURE_SPOTLIGHT": {
"LEARN_MORE": "Learn more",
"WATCH_VIDEO": "Watch video"
+ },
+ "DURATION_INPUT": {
+ "MINUTES": "Minutes",
+ "HOURS": "Hours",
+ "DAYS": "Days",
+ "PLACEHOLDER": "Enter duration"
}
}
diff --git a/app/javascript/dashboard/i18n/locale/zh_TW/generalSettings.json b/app/javascript/dashboard/i18n/locale/zh_TW/generalSettings.json
index fcb2fc026..14516002f 100644
--- a/app/javascript/dashboard/i18n/locale/zh_TW/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/zh_TW/generalSettings.json
@@ -44,6 +44,10 @@
"TITLE": "Account ID",
"NOTE": "This ID is required if you are building an API based integration"
},
+ "AUTO_RESOLVE": {
+ "TITLE": "Auto-resolve conversations",
+ "NOTE": "This configuration would allow you to automatically end the conversation after a certain period. Set the duration and customize the message to the user below."
+ },
"NAME": {
"LABEL": "帳戶名稱",
"PLACEHOLDER": "您的帳戶名稱",
@@ -65,9 +69,18 @@
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Number of days after a ticket should auto resolve if there is no activity",
+ "LABEL": "Inactivity duration for resolution",
+ "HELP": "Duration after a conversation should auto resolve if there is no activity",
"PLACEHOLDER": "30",
- "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)"
+ "ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)",
+ "API": {
+ "SUCCESS": "Auto resolve settings updated successfully",
+ "ERROR": "Failed to update auto resolve settings"
+ },
+ "UPDATE_BUTTON": "Update Auto-resolve",
+ "MESSAGE_LABEL": "Custom resolution message",
+ "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
+ "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "您的帳戶啟用了電子信箱與對話的持續性功能。",
diff --git a/app/javascript/dashboard/i18n/locale/zh_TW/integrations.json b/app/javascript/dashboard/i18n/locale/zh_TW/integrations.json
index 6e7331dbf..758fbe8ce 100644
--- a/app/javascript/dashboard/i18n/locale/zh_TW/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/zh_TW/integrations.json
@@ -334,7 +334,21 @@
"YOU": "You",
"USE": "Use this",
"RESET": "Reset",
- "SELECT_ASSISTANT": "Select Assistant"
+ "SELECT_ASSISTANT": "Select Assistant",
+ "PROMPTS": {
+ "SUMMARIZE": {
+ "LABEL": "Summarize this conversation",
+ "CONTENT": "Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent"
+ },
+ "SUGGEST": {
+ "LABEL": "Suggest an answer",
+ "CONTENT": "Analyze the customer's inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information."
+ },
+ "RATE": {
+ "LABEL": "Rate this conversation",
+ "CONTENT": "Review the conversation to see how well it meets the customer's needs. Share a rating out of 5 based on tone, clarity, and effectiveness."
+ }
+ }
},
"PLAYGROUND": {
"USER": "You",
@@ -392,15 +406,18 @@
},
"NAME": {
"LABEL": "姓名",
- "PLACEHOLDER": "Enter assistant name"
+ "PLACEHOLDER": "Enter assistant name",
+ "ERROR": "The name is required"
},
"DESCRIPTION": {
"LABEL": "描述資訊",
- "PLACEHOLDER": "Enter assistant description"
+ "PLACEHOLDER": "Enter assistant description",
+ "ERROR": "The description is required"
},
"PRODUCT_NAME": {
"LABEL": "Product Name",
- "PLACEHOLDER": "Enter product name"
+ "PLACEHOLDER": "Enter product name",
+ "ERROR": "The product name is required"
},
"WELCOME_MESSAGE": {
"LABEL": "Welcome Message",
diff --git a/app/javascript/dashboard/routes/dashboard/settings/account/Index.vue b/app/javascript/dashboard/routes/dashboard/settings/account/Index.vue
index 7afb3cf00..5681cb0f9 100644
--- a/app/javascript/dashboard/routes/dashboard/settings/account/Index.vue
+++ b/app/javascript/dashboard/routes/dashboard/settings/account/Index.vue
@@ -1,25 +1,34 @@
-
-
-
-
- {{ $t('GENERAL_SETTINGS.SUBMIT') }}
-
-
-
-