Compare commits

..
Author SHA1 Message Date
Shivam Mishra b8fd2c61fb feat: kickstart lsq transcript attachment 2025-10-27 20:30:27 +05:30
325 changed files with 3152 additions and 10731 deletions
-2
View File
@@ -256,8 +256,6 @@ AZURE_APP_SECRET=
## Change these values to fine tune performance ## Change these values to fine tune performance
# control the concurrency setting of sidekiq # control the concurrency setting of sidekiq
# SIDEKIQ_CONCURRENCY=10 # SIDEKIQ_CONCURRENCY=10
# Enable verbose logging each time a job is dequeued in Sidekiq
# ENABLE_SIDEKIQ_DEQUEUE_LOGGER=false
# AI powered features # AI powered features
+1 -1
View File
@@ -23,7 +23,7 @@ Metrics/MethodLength:
- 'enterprise/lib/captain/agent.rb' - 'enterprise/lib/captain/agent.rb'
RSpec/ExampleLength: RSpec/ExampleLength:
Max: 50 Max: 25
Style/Documentation: Style/Documentation:
Enabled: false Enabled: false
-1
View File
@@ -21,7 +21,6 @@ gem 'telephone_number'
gem 'time_diff' gem 'time_diff'
gem 'tzinfo-data' gem 'tzinfo-data'
gem 'valid_email2' gem 'valid_email2'
gem 'email-provider-info'
# compress javascript config.assets.js_compressor # compress javascript config.assets.js_compressor
gem 'uglifier' gem 'uglifier'
##-- used for single column multiple binary flags in notification settings/feature flagging --## ##-- used for single column multiple binary flags in notification settings/feature flagging --##
+2 -4
View File
@@ -270,7 +270,6 @@ GEM
concurrent-ruby (~> 1.0) concurrent-ruby (~> 1.0)
http (>= 3.0) http (>= 3.0)
ruby2_keywords ruby2_keywords
email-provider-info (0.0.1)
email_reply_trimmer (0.1.13) email_reply_trimmer (0.1.13)
erubi (1.13.0) erubi (1.13.0)
et-orbi (1.2.11) et-orbi (1.2.11)
@@ -595,7 +594,7 @@ GEM
oj (3.16.10) oj (3.16.10)
bigdecimal (>= 3.0) bigdecimal (>= 3.0)
ostruct (>= 0.2) ostruct (>= 0.2)
omniauth (2.1.4) omniauth (2.1.3)
hashie (>= 3.4.6) hashie (>= 3.4.6)
logger logger
rack (>= 2.2.3) rack (>= 2.2.3)
@@ -654,7 +653,7 @@ GEM
rack (>= 2.0.0) rack (>= 2.0.0)
rack-mini-profiler (3.2.0) rack-mini-profiler (3.2.0)
rack (>= 1.2.0) rack (>= 1.2.0)
rack-protection (4.2.1) rack-protection (4.1.1)
base64 (>= 0.1.0) base64 (>= 0.1.0)
logger (>= 1.6.0) logger (>= 1.6.0)
rack (>= 3.0.0, < 4) rack (>= 3.0.0, < 4)
@@ -1017,7 +1016,6 @@ DEPENDENCIES
dotenv-rails (>= 3.0.0) dotenv-rails (>= 3.0.0)
down down
elastic-apm elastic-apm
email-provider-info
email_reply_trimmer email_reply_trimmer
facebook-messenger facebook-messenger
factory_bot_rails (>= 6.4.3) factory_bot_rails (>= 6.4.3)
-4
View File
@@ -36,10 +36,6 @@
"REDIS_OPENSSL_VERIFY_MODE":{ "REDIS_OPENSSL_VERIFY_MODE":{
"description": "OpenSSL verification mode for Redis connections. ref https://help.heroku.com/HC0F8CUS/redis-connection-issues", "description": "OpenSSL verification mode for Redis connections. ref https://help.heroku.com/HC0F8CUS/redis-connection-issues",
"value": "none" "value": "none"
},
"NODE_OPTIONS": {
"description": "Increase V8 heap for Vite build to avoid OOM",
"value": "--max-old-space-size=4096"
} }
}, },
"formation": { "formation": {
+1 -1
View File
@@ -23,7 +23,7 @@ class Messages::MessageBuilder
process_emails process_emails
# When the message has no quoted content, it will just be rendered as a regular message # When the message has no quoted content, it will just be rendered as a regular message
# The frontend is equipped to handle this case # The frontend is equipped to handle this case
process_email_content process_email_content if @account.feature_enabled?(:quoted_email_reply)
@message.save! @message.save!
@message @message
end end
@@ -1,12 +1,13 @@
class Api::V1::Accounts::BulkActionsController < Api::V1::Accounts::BaseController class Api::V1::Accounts::BulkActionsController < Api::V1::Accounts::BaseController
before_action :type_matches?
def create def create
case normalized_type if type_matches?
when 'Conversation' ::BulkActionsJob.perform_later(
enqueue_conversation_job account: @current_account,
head :ok user: current_user,
when 'Contact' params: permitted_params
check_authorization_for_contact_action )
enqueue_contact_job
head :ok head :ok
else else
render json: { success: false }, status: :unprocessable_entity render json: { success: false }, status: :unprocessable_entity
@@ -15,54 +16,11 @@ class Api::V1::Accounts::BulkActionsController < Api::V1::Accounts::BaseControll
private private
def normalized_type def type_matches?
params[:type].to_s.camelize ['Conversation'].include?(params[:type])
end end
def enqueue_conversation_job def permitted_params
::BulkActionsJob.perform_later( params.permit(:type, :snoozed_until, ids: [], fields: [:status, :assignee_id, :team_id], labels: [add: [], remove: []])
account: @current_account,
user: current_user,
params: conversation_params
)
end
def enqueue_contact_job
Contacts::BulkActionJob.perform_later(
@current_account.id,
current_user.id,
contact_params
)
end
def delete_contact_action?
params[:action_name] == 'delete'
end
def check_authorization_for_contact_action
authorize(Contact, :destroy?) if delete_contact_action?
end
def conversation_params
# TODO: Align conversation payloads with the `{ action_name, action_attributes }`
# and then remove this method in favor of a common params method.
base = params.permit(
:snoozed_until,
fields: [:status, :assignee_id, :team_id]
)
append_common_bulk_attributes(base)
end
def contact_params
# TODO: remove this method in favor of a common params method.
# once legacy conversation payloads are migrated.
append_common_bulk_attributes({})
end
def append_common_bulk_attributes(base_params)
# NOTE: Conversation payloads historically diverged per action. Going forward we
# want all objects to share a common contract: `{ action_name, action_attributes }`
common = params.permit(:type, :action_name, ids: [], labels: [add: [], remove: []])
base_params.merge(common)
end end
end end
@@ -5,7 +5,6 @@ import { useToggle } from '@vueuse/core';
import Button from 'dashboard/components-next/button/Button.vue'; import Button from 'dashboard/components-next/button/Button.vue';
import ConfirmContactDeleteDialog from 'dashboard/components-next/Contacts/ContactsForm/ConfirmContactDeleteDialog.vue'; import ConfirmContactDeleteDialog from 'dashboard/components-next/Contacts/ContactsForm/ConfirmContactDeleteDialog.vue';
import Policy from 'dashboard/components/policy.vue';
defineProps({ defineProps({
selectedContact: { selectedContact: {
@@ -25,44 +24,42 @@ const openConfirmDeleteContactDialog = () => {
</script> </script>
<template> <template>
<Policy :permissions="['administrator']"> <div class="flex flex-col items-start border-t border-n-strong px-6 py-5">
<div class="flex flex-col items-start border-t border-n-strong px-6 py-5"> <Button
<Button :label="t('CONTACTS_LAYOUT.DETAILS.DELETE_CONTACT')"
:label="t('CONTACTS_LAYOUT.DETAILS.DELETE_CONTACT')" sm
sm link
link slate
slate class="hover:!no-underline text-n-slate-12"
class="hover:!no-underline text-n-slate-12" icon="i-lucide-chevron-down"
icon="i-lucide-chevron-down" trailing-icon
trailing-icon @click="toggleDeleteSection()"
@click="toggleDeleteSection()" />
/>
<div <div
class="transition-all duration-300 ease-in-out grid w-full overflow-hidden" class="transition-all duration-300 ease-in-out grid w-full overflow-hidden"
:class=" :class="
showDeleteSection showDeleteSection
? 'grid-rows-[1fr] opacity-100 mt-2' ? 'grid-rows-[1fr] opacity-100 mt-2'
: 'grid-rows-[0fr] opacity-0 mt-0' : 'grid-rows-[0fr] opacity-0 mt-0'
" "
> >
<div class="overflow-hidden min-h-0"> <div class="overflow-hidden min-h-0">
<span class="inline-flex text-n-slate-11 text-sm items-center gap-1"> <span class="inline-flex text-n-slate-11 text-sm items-center gap-1">
{{ t('CONTACTS_LAYOUT.CARD.DELETE_CONTACT.MESSAGE') }} {{ t('CONTACTS_LAYOUT.CARD.DELETE_CONTACT.MESSAGE') }}
<Button <Button
:label="t('CONTACTS_LAYOUT.CARD.DELETE_CONTACT.BUTTON')" :label="t('CONTACTS_LAYOUT.CARD.DELETE_CONTACT.BUTTON')"
sm sm
ruby ruby
link link
@click="openConfirmDeleteContactDialog()" @click="openConfirmDeleteContactDialog()"
/> />
</span> </span>
</div>
</div> </div>
</div> </div>
<ConfirmContactDeleteDialog </div>
ref="confirmDeleteContactDialogRef" <ConfirmContactDeleteDialog
:selected-contact="selectedContact" ref="confirmDeleteContactDialogRef"
/> :selected-contact="selectedContact"
</Policy> />
</template> </template>
@@ -8,7 +8,6 @@ import Button from 'dashboard/components-next/button/Button.vue';
import Avatar from 'dashboard/components-next/avatar/Avatar.vue'; import Avatar from 'dashboard/components-next/avatar/Avatar.vue';
import Flag from 'dashboard/components-next/flag/Flag.vue'; import Flag from 'dashboard/components-next/flag/Flag.vue';
import ContactDeleteSection from 'dashboard/components-next/Contacts/ContactsCard/ContactDeleteSection.vue'; import ContactDeleteSection from 'dashboard/components-next/Contacts/ContactsCard/ContactDeleteSection.vue';
import Checkbox from 'dashboard/components-next/checkbox/Checkbox.vue';
import countries from 'shared/constants/countries'; import countries from 'shared/constants/countries';
const props = defineProps({ const props = defineProps({
@@ -21,17 +20,9 @@ const props = defineProps({
availabilityStatus: { type: String, default: null }, availabilityStatus: { type: String, default: null },
isExpanded: { type: Boolean, default: false }, isExpanded: { type: Boolean, default: false },
isUpdating: { type: Boolean, default: false }, isUpdating: { type: Boolean, default: false },
selectable: { type: Boolean, default: false },
isSelected: { type: Boolean, default: false },
}); });
const emit = defineEmits([ const emit = defineEmits(['toggle', 'updateContact', 'showContact']);
'toggle',
'updateContact',
'showContact',
'select',
'avatarHover',
]);
const { t } = useI18n(); const { t } = useI18n();
@@ -97,148 +88,111 @@ const onClickExpand = () => {
}; };
const onClickViewDetails = () => emit('showContact', props.id); const onClickViewDetails = () => emit('showContact', props.id);
const toggleSelect = checked => {
emit('select', checked);
};
const handleAvatarHover = isHovered => {
emit('avatarHover', isHovered);
};
</script> </script>
<template> <template>
<div class="relative"> <CardLayout :key="id" layout="row">
<CardLayout <div class="flex items-center justify-start flex-1 gap-4">
:key="id" <Avatar
layout="row" :name="name"
:class="{ :src="thumbnail"
'outline-n-weak !bg-n-slate-3 dark:!bg-n-solid-3': isSelected, :size="48"
}" :status="availabilityStatus"
> hide-offline-status
<div class="flex items-center justify-start flex-1 gap-4"> rounded-full
<div />
class="relative" <div class="flex flex-col gap-0.5 flex-1">
@mouseenter="handleAvatarHover(true)" <div class="flex flex-wrap items-center gap-x-4 gap-y-1">
@mouseleave="handleAvatarHover(false)" <span class="text-base font-medium truncate text-n-slate-12">
> {{ name }}
<Avatar </span>
:name="name" <span class="inline-flex items-center gap-1">
:src="thumbnail"
:size="48"
:status="availabilityStatus"
hide-offline-status
rounded-full
>
<template v-if="selectable" #overlay="{ size }">
<label
class="flex items-center justify-center rounded-full cursor-pointer absolute inset-0 z-10 backdrop-blur-[2px] border border-n-weak"
:style="{ width: `${size}px`, height: `${size}px` }"
@click.stop
>
<Checkbox
:model-value="isSelected"
@change="event => toggleSelect(event.target.checked)"
/>
</label>
</template>
</Avatar>
</div>
<div class="flex flex-col gap-0.5 flex-1">
<div class="flex flex-wrap items-center gap-x-4 gap-y-1">
<span class="text-base font-medium truncate text-n-slate-12">
{{ name }}
</span>
<span class="inline-flex items-center gap-1">
<span
v-if="additionalAttributes?.companyName"
class="i-ph-building-light size-4 text-n-slate-10 mb-0.5"
/>
<span
v-if="additionalAttributes?.companyName"
class="text-sm truncate text-n-slate-11"
>
{{ additionalAttributes.companyName }}
</span>
</span>
</div>
<div
class="flex flex-wrap items-center justify-start gap-x-3 gap-y-1"
>
<div v-if="email" class="truncate max-w-72" :title="email">
<span class="text-sm text-n-slate-11">
{{ email }}
</span>
</div>
<div v-if="email" class="w-px h-3 truncate bg-n-slate-6" />
<span v-if="phoneNumber" class="text-sm truncate text-n-slate-11">
{{ phoneNumber }}
</span>
<div v-if="phoneNumber" class="w-px h-3 truncate bg-n-slate-6" />
<span <span
v-if="countryDetails" v-if="additionalAttributes?.companyName"
class="inline-flex items-center gap-2 text-sm truncate text-n-slate-11" class="i-ph-building-light size-4 text-n-slate-10 mb-0.5"
>
<Flag :country="countryDetails.countryCode" class="size-3.5" />
{{ formattedLocation }}
</span>
<div v-if="countryDetails" class="w-px h-3 truncate bg-n-slate-6" />
<Button
:label="t('CONTACTS_LAYOUT.CARD.VIEW_DETAILS')"
variant="link"
size="xs"
@click="onClickViewDetails"
/> />
<span
v-if="additionalAttributes?.companyName"
class="text-sm truncate text-n-slate-11"
>
{{ additionalAttributes.companyName }}
</span>
</span>
</div>
<div class="flex flex-wrap items-center justify-start gap-x-3 gap-y-1">
<div v-if="email" class="truncate max-w-72" :title="email">
<span class="text-sm text-n-slate-11">
{{ email }}
</span>
</div> </div>
<div v-if="email" class="w-px h-3 truncate bg-n-slate-6" />
<span v-if="phoneNumber" class="text-sm truncate text-n-slate-11">
{{ phoneNumber }}
</span>
<div v-if="phoneNumber" class="w-px h-3 truncate bg-n-slate-6" />
<span
v-if="countryDetails"
class="inline-flex items-center gap-2 text-sm truncate text-n-slate-11"
>
<Flag :country="countryDetails.countryCode" class="size-3.5" />
{{ formattedLocation }}
</span>
<div v-if="countryDetails" class="w-px h-3 truncate bg-n-slate-6" />
<Button
:label="t('CONTACTS_LAYOUT.CARD.VIEW_DETAILS')"
variant="link"
size="xs"
@click="onClickViewDetails"
/>
</div> </div>
</div> </div>
</div>
<Button <Button
icon="i-lucide-chevron-down" icon="i-lucide-chevron-down"
variant="ghost" variant="ghost"
color="slate" color="slate"
size="xs" size="xs"
:class="{ 'rotate-180': isExpanded }" :class="{ 'rotate-180': isExpanded }"
@click="onClickExpand" @click="onClickExpand"
/> />
<template #after> <template #after>
<div <div
class="transition-all duration-500 ease-in-out grid overflow-hidden" class="transition-all duration-500 ease-in-out grid overflow-hidden"
:class=" :class="
isExpanded isExpanded
? 'grid-rows-[1fr] opacity-100' ? 'grid-rows-[1fr] opacity-100'
: 'grid-rows-[0fr] opacity-0' : 'grid-rows-[0fr] opacity-0'
" "
> >
<div class="overflow-hidden"> <div class="overflow-hidden">
<div class="flex flex-col gap-6 p-6 border-t border-n-strong"> <div class="flex flex-col gap-6 p-6 border-t border-n-strong">
<ContactsForm <ContactsForm
ref="contactsFormRef" ref="contactsFormRef"
:contact-data="contactData" :contact-data="contactData"
@update="handleFormUpdate" @update="handleFormUpdate"
/>
<div>
<Button
:label="
t('CONTACTS_LAYOUT.CARD.EDIT_DETAILS_FORM.UPDATE_BUTTON')
"
size="sm"
:is-loading="isUpdating"
:disabled="isUpdating || isFormInvalid"
@click="handleUpdateContact"
/>
</div>
</div>
<ContactDeleteSection
:selected-contact="{
id: props.id,
name: props.name,
}"
/> />
<div>
<Button
:label="
t('CONTACTS_LAYOUT.CARD.EDIT_DETAILS_FORM.UPDATE_BUTTON')
"
size="sm"
:is-loading="isUpdating"
:disabled="isUpdating || isFormInvalid"
@click="handleUpdateContact"
/>
</div>
</div> </div>
<ContactDeleteSection
:selected-contact="{
id: props.id,
name: props.name,
}"
/>
</div> </div>
</template> </div>
</CardLayout> </template>
</div> </CardLayout>
</template> </template>
@@ -10,7 +10,6 @@ import Button from 'dashboard/components-next/button/Button.vue';
import ContactLabels from 'dashboard/components-next/Contacts/ContactLabels/ContactLabels.vue'; import ContactLabels from 'dashboard/components-next/Contacts/ContactLabels/ContactLabels.vue';
import ContactsForm from 'dashboard/components-next/Contacts/ContactsForm/ContactsForm.vue'; import ContactsForm from 'dashboard/components-next/Contacts/ContactsForm/ContactsForm.vue';
import ConfirmContactDeleteDialog from 'dashboard/components-next/Contacts/ContactsForm/ConfirmContactDeleteDialog.vue'; import ConfirmContactDeleteDialog from 'dashboard/components-next/Contacts/ContactsForm/ConfirmContactDeleteDialog.vue';
import Policy from 'dashboard/components/policy.vue';
const props = defineProps({ const props = defineProps({
selectedContact: { selectedContact: {
@@ -175,29 +174,27 @@ const handleAvatarDelete = async () => {
@click="updateContact" @click="updateContact"
/> />
</div> </div>
<Policy :permissions="['administrator']"> <div
<div class="flex flex-col items-start w-full gap-4 pt-6 border-t border-n-strong"
class="flex flex-col items-start w-full gap-4 pt-6 border-t border-n-strong" >
> <div class="flex flex-col gap-2">
<div class="flex flex-col gap-2"> <h6 class="text-base font-medium text-n-slate-12">
<h6 class="text-base font-medium text-n-slate-12"> {{ t('CONTACTS_LAYOUT.DETAILS.DELETE_CONTACT') }}
{{ t('CONTACTS_LAYOUT.DETAILS.DELETE_CONTACT') }} </h6>
</h6> <span class="text-sm text-n-slate-11">
<span class="text-sm text-n-slate-11"> {{ t('CONTACTS_LAYOUT.DETAILS.DELETE_CONTACT_DESCRIPTION') }}
{{ t('CONTACTS_LAYOUT.DETAILS.DELETE_CONTACT_DESCRIPTION') }} </span>
</span>
</div>
<Button
:label="t('CONTACTS_LAYOUT.DETAILS.DELETE_CONTACT')"
color="ruby"
@click="openConfirmDeleteContactDialog"
/>
</div> </div>
<ConfirmContactDeleteDialog <Button
ref="confirmDeleteContactDialogRef" :label="t('CONTACTS_LAYOUT.DETAILS.DELETE_CONTACT')"
:selected-contact="selectedContact" color="ruby"
@go-to-contacts-list="emit('goToContactsList')" @click="openConfirmDeleteContactDialog"
/> />
</Policy> </div>
<ConfirmContactDeleteDialog
ref="confirmDeleteContactDialogRef"
:selected-contact="selectedContact"
@go-to-contacts-list="emit('goToContactsList')"
/>
</div> </div>
</template> </template>
@@ -10,15 +10,7 @@ import {
} from 'shared/helpers/CustomErrors'; } from 'shared/helpers/CustomErrors';
import ContactsCard from 'dashboard/components-next/Contacts/ContactsCard/ContactsCard.vue'; import ContactsCard from 'dashboard/components-next/Contacts/ContactsCard/ContactsCard.vue';
const props = defineProps({ defineProps({ contacts: { type: Array, required: true } });
contacts: { type: Array, required: true },
selectedContactIds: {
type: Array,
default: () => [],
},
});
const emit = defineEmits(['toggleContact']);
const { t } = useI18n(); const { t } = useI18n();
const store = useStore(); const store = useStore();
@@ -28,9 +20,6 @@ const route = useRoute();
const uiFlags = useMapGetter('contacts/getUIFlags'); const uiFlags = useMapGetter('contacts/getUIFlags');
const isUpdating = computed(() => uiFlags.value.isUpdating); const isUpdating = computed(() => uiFlags.value.isUpdating);
const expandedCardId = ref(null); const expandedCardId = ref(null);
const hoveredAvatarId = ref(null);
const selectedIdsSet = computed(() => new Set(props.selectedContactIds || []));
const updateContact = async updatedData => { const updateContact = async updatedData => {
try { try {
@@ -69,43 +58,25 @@ const onClickViewDetails = async id => {
const toggleExpanded = id => { const toggleExpanded = id => {
expandedCardId.value = expandedCardId.value === id ? null : id; expandedCardId.value = expandedCardId.value === id ? null : id;
}; };
const isSelected = id => selectedIdsSet.value.has(id);
const shouldShowSelection = id => {
return hoveredAvatarId.value === id || isSelected(id);
};
const handleSelect = (id, value) => {
emit('toggleContact', { id, value });
};
const handleAvatarHover = (id, isHovered) => {
hoveredAvatarId.value = isHovered ? id : null;
};
</script> </script>
<template> <template>
<div class="flex flex-col gap-4"> <div class="flex flex-col gap-4 px-6 pt-4 pb-6">
<div v-for="contact in contacts" :key="contact.id" class="relative"> <ContactsCard
<ContactsCard v-for="contact in contacts"
:id="contact.id" :id="contact.id"
:name="contact.name" :key="contact.id"
:email="contact.email" :name="contact.name"
:thumbnail="contact.thumbnail" :email="contact.email"
:phone-number="contact.phoneNumber" :thumbnail="contact.thumbnail"
:additional-attributes="contact.additionalAttributes" :phone-number="contact.phoneNumber"
:availability-status="contact.availabilityStatus" :additional-attributes="contact.additionalAttributes"
:is-expanded="expandedCardId === contact.id" :availability-status="contact.availabilityStatus"
:is-updating="isUpdating" :is-expanded="expandedCardId === contact.id"
:selectable="shouldShowSelection(contact.id)" :is-updating="isUpdating"
:is-selected="isSelected(contact.id)" @toggle="toggleExpanded(contact.id)"
@toggle="toggleExpanded(contact.id)" @update-contact="updateContact"
@update-contact="updateContact" @show-contact="onClickViewDetails"
@show-contact="onClickViewDetails" />
@select="value => handleSelect(contact.id, value)"
@avatar-hover="value => handleAvatarHover(contact.id, value)"
/>
</div>
</div> </div>
</template> </template>
@@ -14,10 +14,6 @@ defineProps({
type: Array, type: Array,
default: () => [], default: () => [],
}, },
showBackdrop: {
type: Boolean,
default: true,
},
}); });
</script> </script>
@@ -29,24 +25,14 @@ defineProps({
class="relative w-full max-w-[60rem] mx-auto overflow-hidden h-full max-h-[28rem]" class="relative w-full max-w-[60rem] mx-auto overflow-hidden h-full max-h-[28rem]"
> >
<div <div
v-if="showBackdrop"
class="w-full h-full space-y-4 overflow-y-hidden opacity-50 pointer-events-none" class="w-full h-full space-y-4 overflow-y-hidden opacity-50 pointer-events-none"
> >
<slot name="empty-state-item" /> <slot name="empty-state-item" />
</div> </div>
<div <div
class="flex flex-col items-center justify-end w-full h-full pb-20" class="absolute inset-x-0 bottom-0 flex flex-col items-center justify-end w-full h-full pb-20 bg-gradient-to-t from-n-background from-25% dark:from-n-background to-transparent"
:class="{
'absolute inset-x-0 bottom-0 bg-gradient-to-t from-n-background from-25% dark:from-n-background to-transparent':
showBackdrop,
}"
> >
<div <div class="flex flex-col items-center justify-center gap-6">
class="flex flex-col items-center justify-center gap-6"
:class="{
'mt-48': !showBackdrop,
}"
>
<div class="flex flex-col items-center justify-center gap-3"> <div class="flex flex-col items-center justify-center gap-3">
<h2 <h2
class="text-3xl font-medium text-center text-n-slate-12 font-interDisplay" class="text-3xl font-medium text-center text-n-slate-12 font-interDisplay"
@@ -54,7 +40,6 @@ defineProps({
{{ title }} {{ title }}
</h2> </h2>
<p <p
v-if="subtitle"
class="max-w-xl text-base text-center text-n-slate-11 font-interDisplay tracking-[0.3px]" class="max-w-xl text-base text-center text-n-slate-11 font-interDisplay tracking-[0.3px]"
> >
{{ subtitle }} {{ subtitle }}
@@ -114,7 +114,6 @@ const handlePageChange = event => {
<slot name="action" /> <slot name="action" />
</div> </div>
</div> </div>
<slot name="subHeader" />
</div> </div>
</header> </header>
<main class="flex-1 px-6 overflow-y-auto"> <main class="flex-1 px-6 overflow-y-auto">
@@ -64,23 +64,20 @@ const bulkCheckboxState = computed({
class="flex items-center gap-3 py-1 ltr:pl-3 rtl:pr-3 ltr:pr-4 rtl:pl-4 rounded-lg bg-n-solid-2 outline outline-1 outline-n-container shadow" class="flex items-center gap-3 py-1 ltr:pl-3 rtl:pr-3 ltr:pr-4 rtl:pl-4 rounded-lg bg-n-solid-2 outline outline-1 outline-n-container shadow"
> >
<div class="flex items-center gap-3"> <div class="flex items-center gap-3">
<div class="flex items-center gap-1.5 min-w-0"> <div class="flex items-center gap-1.5">
<Checkbox <Checkbox
v-model="bulkCheckboxState" v-model="bulkCheckboxState"
:indeterminate="isIndeterminate" :indeterminate="isIndeterminate"
/> />
<span <span class="text-sm font-medium text-n-slate-12 tabular-nums">
class="text-sm font-medium truncate text-n-slate-12 tabular-nums"
>
{{ selectAllLabel }} {{ selectAllLabel }}
</span> </span>
</div> </div>
<span class="text-sm text-n-slate-10 truncate tabular-nums"> <span class="text-sm text-n-slate-10 tabular-nums">
{{ selectedCountLabel }} {{ selectedCountLabel }}
</span> </span>
<div class="h-4 w-px bg-n-strong" />
<slot name="secondary-actions" />
</div> </div>
<div class="h-4 w-px bg-n-strong" />
<div class="flex items-center gap-3"> <div class="flex items-center gap-3">
<slot name="actions" :selected-count="selectedCount"> <slot name="actions" :selected-count="selectedCount">
<Button <Button
@@ -9,7 +9,6 @@ import DropdownMenu from 'dashboard/components-next/dropdown-menu/DropdownMenu.v
import Button from 'dashboard/components-next/button/Button.vue'; import Button from 'dashboard/components-next/button/Button.vue';
import Checkbox from 'dashboard/components-next/checkbox/Checkbox.vue'; import Checkbox from 'dashboard/components-next/checkbox/Checkbox.vue';
import Policy from 'dashboard/components/policy.vue'; import Policy from 'dashboard/components/policy.vue';
import Icon from 'dashboard/components-next/icon/Icon.vue';
const props = defineProps({ const props = defineProps({
id: { id: {
@@ -60,10 +59,6 @@ const props = defineProps({
type: Boolean, type: Boolean,
default: true, default: true,
}, },
showActions: {
type: Boolean,
default: false,
},
}); });
const emit = defineEmits(['action', 'navigate', 'select', 'hover']); const emit = defineEmits(['action', 'navigate', 'select', 'hover']);
@@ -164,116 +159,73 @@ const handleDocumentableClick = () => {
<span class="text-n-slate-11 text-sm line-clamp-5"> <span class="text-n-slate-11 text-sm line-clamp-5">
{{ answer }} {{ answer }}
</span> </span>
<div <div v-if="!compact" class="items-center justify-between hidden lg:flex">
v-if="!compact" <div class="inline-flex items-center">
class="flex items-start justify-between flex-col-reverse md:flex-row gap-3" <span
> class="text-sm shrink-0 truncate text-n-slate-11 inline-flex items-center gap-1"
<Policy v-if="showActions" :permissions="['administrator']"> >
<div class="flex items-center gap-2 sm:gap-5 w-full"> <i class="i-woot-captain" />
<Button {{ assistant?.name || '' }}
v-if="status === 'pending'" </span>
:label="$t('CAPTAIN.RESPONSES.OPTIONS.APPROVE')" <div
icon="i-lucide-circle-check-big" v-if="documentable"
sm class="shrink-0 text-sm text-n-slate-11 inline-flex line-clamp-1 gap-1 ml-3"
link >
class="hover:!no-underline"
@click="
handleAssistantAction({ action: 'approve', value: 'approve' })
"
/>
<Button
:label="$t('CAPTAIN.RESPONSES.OPTIONS.EDIT_RESPONSE')"
icon="i-lucide-pencil-line"
sm
slate
link
class="hover:!no-underline"
@click="
handleAssistantAction({
action: 'edit',
value: 'edit',
})
"
/>
<Button
:label="$t('CAPTAIN.RESPONSES.OPTIONS.DELETE_RESPONSE')"
icon="i-lucide-trash"
sm
ruby
link
class="hover:!no-underline"
@click="
handleAssistantAction({ action: 'delete', value: 'delete' })
"
/>
</div>
</Policy>
<div
class="flex items-center gap-3"
:class="{ 'justify-between w-full': !showActions }"
>
<div class="inline-flex items-center gap-3 min-w-0">
<span <span
v-if="status === 'approved'" v-if="documentable.type === 'Captain::Document'"
class="text-sm shrink-0 truncate text-n-slate-11 inline-flex items-center gap-1" class="inline-flex items-center gap-1 truncate over"
> >
<Icon icon="i-woot-captain" class="size-3.5" /> <i class="i-ph-files-light text-base" />
{{ assistant?.name || '' }} <span class="max-w-96 truncate" :title="documentable.name">
</span>
<div
v-if="documentable"
class="text-sm text-n-slate-11 grid grid-cols-[auto_1fr] items-center gap-1 min-w-0"
>
<Icon
v-if="documentable.type === 'Captain::Document'"
icon="i-ph-files-light"
class="size-3.5"
/>
<Icon
v-else-if="documentable.type === 'User'"
icon="i-ph-user-circle-plus"
class="size-3.5"
/>
<Icon
v-else-if="documentable.type === 'Conversation'"
icon="i-ph-chat-circle-dots"
class="size-3.5"
/>
<span
v-if="documentable.type === 'Captain::Document'"
class="truncate"
:title="documentable.name"
>
{{ documentable.name }} {{ documentable.name }}
</span> </span>
</span>
<span
v-if="documentable.type === 'User'"
class="inline-flex items-center gap-1"
>
<i class="i-ph-user-circle-plus text-base" />
<span <span
v-else-if="documentable.type === 'User'" class="max-w-96 truncate"
class="truncate"
:title="documentable.available_name" :title="documentable.available_name"
> >
{{ documentable.available_name }} {{ documentable.available_name }}
</span> </span>
<span </span>
v-else-if="documentable.type === 'Conversation'" <span
class="hover:underline truncate cursor-pointer" v-else-if="documentable.type === 'Conversation'"
role="button" class="inline-flex items-center gap-1 group cursor-pointer"
@click="handleDocumentableClick" role="button"
> @click="handleDocumentableClick"
>
<i class="i-ph-chat-circle-dots text-base" />
<span class="group-hover:underline">
{{ {{
t(`CAPTAIN.RESPONSES.DOCUMENTABLE.CONVERSATION`, { t(`CAPTAIN.RESPONSES.DOCUMENTABLE.CONVERSATION`, {
id: documentable.display_id, id: documentable.display_id,
}) })
}} }}
</span> </span>
</div> </span>
<span v-else />
</div> </div>
<div <div
class="shrink-0 text-sm text-n-slate-11 line-clamp-1 inline-flex items-center gap-1" v-if="status !== 'approved'"
class="shrink-0 text-sm text-n-slate-11 line-clamp-1 inline-flex items-center gap-1 ml-3"
> >
<Icon icon="i-ph-calendar-dot" class="size-3.5" /> <i
{{ timestamp }} class="i-ph-stack text-base"
:title="t('CAPTAIN.RESPONSES.STATUS.TITLE')"
/>
{{ t(`CAPTAIN.RESPONSES.STATUS.${status.toUpperCase()}`) }}
</div> </div>
</div> </div>
<div
class="shrink-0 text-sm text-n-slate-11 line-clamp-1 inline-flex items-center gap-1 ml-3"
>
<i class="i-ph-calendar-dot" />
{{ timestamp }}
</div>
</div> </div>
</CardLayout> </CardLayout>
</template> </template>
@@ -6,39 +6,16 @@ import ResponseCard from 'dashboard/components-next/captain/assistant/ResponseCa
import FeatureSpotlight from 'dashboard/components-next/feature-spotlight/FeatureSpotlight.vue'; import FeatureSpotlight from 'dashboard/components-next/feature-spotlight/FeatureSpotlight.vue';
import { responsesList } from 'dashboard/components-next/captain/pageComponents/emptyStates/captainEmptyStateContent.js'; import { responsesList } from 'dashboard/components-next/captain/pageComponents/emptyStates/captainEmptyStateContent.js';
import { computed } from 'vue'; const emit = defineEmits(['click']);
const props = defineProps({
variant: {
type: String,
default: 'approved',
validator: value => ['approved', 'pending'].includes(value),
},
hasActiveFilters: {
type: Boolean,
default: false,
},
});
const emit = defineEmits(['click', 'clearFilters']);
const isApproved = computed(() => props.variant === 'approved');
const isPending = computed(() => props.variant === 'pending');
const { isOnChatwootCloud } = useAccount(); const { isOnChatwootCloud } = useAccount();
const onClick = () => { const onClick = () => {
emit('click'); emit('click');
}; };
const onClearFilters = () => {
emit('clearFilters');
};
</script> </script>
<template> <template>
<FeatureSpotlight <FeatureSpotlight
v-if="isApproved"
:title="$t('CAPTAIN.RESPONSES.EMPTY_STATE.FEATURE_SPOTLIGHT.TITLE')" :title="$t('CAPTAIN.RESPONSES.EMPTY_STATE.FEATURE_SPOTLIGHT.TITLE')"
:note="$t('CAPTAIN.RESPONSES.EMPTY_STATE.FEATURE_SPOTLIGHT.NOTE')" :note="$t('CAPTAIN.RESPONSES.EMPTY_STATE.FEATURE_SPOTLIGHT.NOTE')"
fallback-thumbnail="/assets/images/dashboard/captain/faqs-light.svg" fallback-thumbnail="/assets/images/dashboard/captain/faqs-light.svg"
@@ -48,16 +25,11 @@ const onClearFilters = () => {
class="mb-8" class="mb-8"
/> />
<EmptyStateLayout <EmptyStateLayout
:title=" :title="$t('CAPTAIN.RESPONSES.EMPTY_STATE.TITLE')"
isPending :subtitle="$t('CAPTAIN.RESPONSES.EMPTY_STATE.SUBTITLE')"
? $t('CAPTAIN.RESPONSES.EMPTY_STATE.NO_PENDING_TITLE')
: $t('CAPTAIN.RESPONSES.EMPTY_STATE.TITLE')
"
:subtitle="isApproved ? $t('CAPTAIN.RESPONSES.EMPTY_STATE.SUBTITLE') : ''"
:action-perms="['administrator']" :action-perms="['administrator']"
:show-backdrop="isApproved"
> >
<template v-if="isApproved" #empty-state-item> <template #empty-state-item>
<div class="grid grid-cols-1 gap-4 p-px overflow-hidden"> <div class="grid grid-cols-1 gap-4 p-px overflow-hidden">
<ResponseCard <ResponseCard
v-for="(response, index) in responsesList.slice(0, 5)" v-for="(response, index) in responsesList.slice(0, 5)"
@@ -73,21 +45,11 @@ const onClearFilters = () => {
</div> </div>
</template> </template>
<template #actions> <template #actions>
<div class="flex flex-col items-center gap-3"> <Button
<Button :label="$t('CAPTAIN.RESPONSES.ADD_NEW')"
v-if="isApproved" icon="i-lucide-plus"
:label="$t('CAPTAIN.RESPONSES.ADD_NEW')" @click="onClick"
icon="i-lucide-plus" />
@click="onClick"
/>
<Button
v-else-if="isPending && hasActiveFilters"
:label="$t('CAPTAIN.RESPONSES.EMPTY_STATE.CLEAR_SEARCH')"
variant="link"
size="sm"
@click="onClearFilters"
/>
</div>
</template> </template>
</EmptyStateLayout> </EmptyStateLayout>
</template> </template>
@@ -1,29 +0,0 @@
<script setup>
import Button from 'dashboard/components-next/button/Button.vue';
defineProps({
message: {
type: Object,
required: true,
},
});
</script>
<template>
<div class="text-n-slate-12 max-w-80 flex flex-col gap-2.5">
<div class="p-3 bg-n-alpha-2 rounded-xl">
<span
v-dompurify-html="message.content"
class="prose prose-bubble font-medium text-sm"
/>
</div>
<div class="flex gap-2">
<Button label="Call us" slate class="!text-n-blue-text w-full" />
<Button
label="Visit our website"
slate
class="!text-n-blue-text w-full"
/>
</div>
</div>
</template>
@@ -1,32 +0,0 @@
<script setup>
import Button from 'dashboard/components-next/button/Button.vue';
defineProps({
message: {
type: Object,
required: true,
},
});
</script>
<template>
<div
class="bg-n-alpha-2 divide-y divide-n-strong text-n-slate-12 rounded-xl max-w-80"
>
<div class="px-3 py-2.5">
<img :src="message.image_url" class="max-h-44 rounded-lg w-full" />
<div class="pt-2.5 flex flex-col gap-2">
<h6 class="font-semibold">{{ message.title }}</h6>
<span
v-dompurify-html="message.content"
class="prose prose-bubble text-sm"
/>
</div>
</div>
<div class="p-3 flex items-center justify-center">
<Button label="Call us to order" link class="hover:!no-underline" />
</div>
<div class="p-3 flex items-center justify-center">
<Button label="Visit our store" link class="hover:!no-underline" />
</div>
</div>
</template>
@@ -1,25 +0,0 @@
<script setup>
import Button from 'dashboard/components-next/button/Button.vue';
defineProps({
message: {
type: Object,
required: true,
},
});
</script>
<template>
<div
class="bg-n-alpha-2 divide-y divide-n-strong text-n-slate-12 rounded-xl max-w-80"
>
<div class="p-3">
<span
v-dompurify-html="message.content"
class="prose prose-bubble font-medium text-sm"
/>
</div>
<div class="p-3 flex items-center justify-center">
<Button label="See options" link class="hover:!no-underline" />
</div>
</div>
</template>
@@ -1,20 +0,0 @@
<script setup>
defineProps({
message: {
type: Object,
required: true,
},
});
</script>
<template>
<div
class="bg-n-alpha-2 text-n-slate-12 rounded-xl flex flex-col gap-2.5 p-3 max-w-80"
>
<img :src="message.image_url" class="max-h-44 rounded-lg w-full" />
<span
v-dompurify-html="message.content"
class="prose prose-bubble font-medium text-sm"
/>
</div>
</template>
@@ -1,68 +0,0 @@
<script setup>
import Button from 'dashboard/components-next/button/Button.vue';
defineProps({
message: {
type: Object,
required: true,
},
});
</script>
<template>
<div
class="bg-n-alpha-2 divide-y divide-n-strong text-n-slate-12 rounded-xl max-w-80"
>
<div class="p-3">
<span
v-dompurify-html="message.content"
class="prose prose-bubble font-medium text-sm"
/>
</div>
<div class="p-3 flex items-center justify-center">
<Button label="No, that will be all" link class="hover:!no-underline">
<template #icon>
<svg
width="15"
height="15"
viewBox="0 0 15 15"
fill="none"
class="stroke-n-blue-text"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M.667 6.654 5.315.667v3.326c7.968 0 8.878 6.46 8.656 10.007l-.005-.027c-.334-1.79-.474-4.658-8.65-4.658v3.327z"
stroke-width="1.333"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</template>
</Button>
</div>
<div class="p-3 flex items-center justify-center">
<Button
label="I want to talk to an agents"
link
class="hover:!no-underline"
>
<template #icon>
<svg
width="15"
height="15"
viewBox="0 0 15 15"
fill="none"
class="stroke-n-blue-text"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M.667 6.654 5.315.667v3.326c7.968 0 8.878 6.46 8.656 10.007l-.005-.027c-.334-1.79-.474-4.658-8.65-4.658v3.327z"
stroke-width="1.333"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</template>
</Button>
</div>
</div>
</template>
@@ -1,14 +0,0 @@
<script setup>
defineProps({
message: {
type: Object,
required: true,
},
});
</script>
<template>
<div class="bg-n-alpha-2 text-n-slate-12 rounded-xl p-3 max-w-80">
<span v-dompurify-html="message.content" class="prose prose-bubble" />
</div>
</template>
@@ -47,7 +47,6 @@ const isReel = computed(() => {
'max-w-48': isReel, 'max-w-48': isReel,
'max-w-full': !isReel, 'max-w-full': !isReel,
}" }"
@click.stop
@error="handleError" @error="handleError"
/> />
</div> </div>
@@ -1,21 +0,0 @@
<script setup>
import CallToAction from '../../bubbles/Template/CallToAction.vue';
const message = {
content:
'We have super cool products going live! Pre-order and customize products. Contact us for more details',
};
</script>
<template>
<Story
title="Components/Message Bubbles/Template/CallToAction"
:layout="{ type: 'grid', width: '600px' }"
>
<Variant title="Call To Action">
<div class="p-4 bg-n-background rounded-lg w-full min-w-4xl">
<CallToAction :message="message" />
</div>
</Variant>
</Story>
</template>
@@ -1,23 +0,0 @@
<script setup>
import Card from '../../bubbles/Template/Card.vue';
const message = {
title: 'Two in one cake (1 pound)',
content: 'Customize your order for special occasions',
image_url:
'https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=500&h=300&fit=crop',
};
</script>
<template>
<Story
title="Components/Message Bubbles/Template/Card"
:layout="{ type: 'grid', width: '600px' }"
>
<Variant title="Card">
<div class="p-4 bg-n-background rounded-lg w-full min-w-4xl">
<Card :message="message" />
</div>
</Variant>
</Story>
</template>
@@ -1,21 +0,0 @@
<script setup>
import ListPicker from '../../bubbles/Template/ListPicker.vue';
const message = {
content: `Hey there! Thanks for reaching out to us. Could you let us know
what you need to help us better assist you? `,
};
</script>
<template>
<Story
title="Components/Message Bubbles/Template/ListPicker"
:layout="{ type: 'grid', width: '600px' }"
>
<Variant title="ListPicker">
<div class="p-4 bg-n-background rounded-lg w-full min-w-4xl">
<ListPicker :message="message" />
</div>
</Variant>
</Story>
</template>
@@ -1,23 +0,0 @@
<script setup>
import Media from '../../bubbles/Template/Media.vue';
const message = {
content:
'Welcome to our Diwali sale! Get flat 50% off on select items. Hurry now!',
image_url:
'https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=500&h=300&fit=crop',
};
</script>
<template>
<Story
title="Components/Message Bubbles/Template/Media"
:layout="{ type: 'grid', width: '600px' }"
>
<Variant title="Image Media">
<div class="p-4 bg-n-background rounded-lg w-full min-w-4xl">
<Media :message="message" />
</div>
</Variant>
</Story>
</template>
@@ -1,21 +0,0 @@
<script setup>
import QuickReply from '../../bubbles/Template/QuickReply.vue';
const message = {
content: `Hey there! Thanks for reaching out to us. Could you let us know
what you need to help us better assist you?`,
};
</script>
<template>
<Story
title="Components/Message Bubbles/Template/QuickReply"
:layout="{ type: 'grid', width: '600px' }"
>
<Variant title="Quick Replies">
<div class="p-4 bg-n-background rounded-lg w-full min-w-4xl">
<QuickReply :message="message" />
</div>
</Variant>
</Story>
</template>
@@ -1,20 +0,0 @@
<script setup>
import Text from '../../bubbles/Template/Text.vue';
const message = {
content: 'Hello John, how may we assist you?',
};
</script>
<template>
<Story
title="Components/Message Bubbles/Template/Text"
:layout="{ type: 'grid', width: '600px' }"
>
<Variant title="Default Text">
<div class="p-4 bg-n-background rounded-lg w-full min-w-4xl">
<Text :message="message" />
</div>
</Variant>
</Story>
</template>
@@ -1,129 +1,100 @@
<script setup> <script>
import { ref, computed } from 'vue'; import { mapGetters } from 'vuex';
import { useI18n } from 'vue-i18n';
import { useMapGetter } from 'dashboard/composables/store';
import { vOnClickOutside } from '@vueuse/components';
import NextButton from 'dashboard/components-next/button/Button.vue'; import NextButton from 'dashboard/components-next/button/Button.vue';
import Input from 'dashboard/components-next/input/Input.vue';
const emit = defineEmits(['close', 'assign']); export default {
components: {
const { t } = useI18n(); NextButton,
},
const labels = useMapGetter('labels/getLabels'); emits: ['update', 'close', 'assign'],
data() {
const query = ref(''); return {
const selectedLabels = ref([]); query: '',
selectedLabels: [],
const filteredLabels = computed(() => { };
if (!query.value) return labels.value; },
return labels.value.filter(label => computed: {
label.title.toLowerCase().includes(query.value.toLowerCase()) ...mapGetters({ labels: 'labels/getLabels' }),
); filteredLabels() {
}); return this.labels.filter(label =>
label.title.toLowerCase().includes(this.query.toLowerCase())
const hasLabels = computed(() => labels.value.length > 0); );
const hasFilteredLabels = computed(() => filteredLabels.value.length > 0); },
},
const isLabelSelected = label => { methods: {
return selectedLabels.value.includes(label); isLabelSelected(label) {
}; return this.selectedLabels.includes(label);
},
const onClose = () => { assignLabels(key) {
emit('close'); this.$emit('update', key);
}; },
onClose() {
const handleAssign = () => { this.$emit('close');
if (selectedLabels.value.length > 0) { },
emit('assign', selectedLabels.value); },
}
}; };
</script> </script>
<template> <template>
<div <div v-on-clickaway="onClose" class="labels-container">
v-on-click-outside="onClose"
class="absolute ltr:right-2 rtl:left-2 top-12 origin-top-right z-20 w-60 bg-n-alpha-3 backdrop-blur-[100px] border-n-weak rounded-lg border border-solid shadow-md"
role="dialog"
aria-labelledby="label-dialog-title"
>
<div class="triangle"> <div class="triangle">
<svg height="12" viewBox="0 0 24 12" width="24"> <svg height="12" viewBox="0 0 24 12" width="24">
<path d="M20 12l-8-8-12 12" fill-rule="evenodd" stroke-width="1px" /> <path d="M20 12l-8-8-12 12" fill-rule="evenodd" stroke-width="1px" />
</svg> </svg>
</div> </div>
<div class="flex items-center justify-between p-2.5"> <div class="flex items-center justify-between header">
<span class="text-sm font-medium">{{ <span>{{ $t('BULK_ACTION.LABELS.ASSIGN_LABELS') }}</span>
t('BULK_ACTION.LABELS.ASSIGN_LABELS')
}}</span>
<NextButton ghost xs slate icon="i-lucide-x" @click="onClose" /> <NextButton ghost xs slate icon="i-lucide-x" @click="onClose" />
</div> </div>
<div class="flex flex-col max-h-60 min-h-0"> <div class="labels-list">
<header class="py-2 px-2.5"> <header class="labels-list__header">
<Input <div
v-model="query" class="flex items-center justify-between h-8 gap-2 label-list-search"
type="search" >
:placeholder="t('BULK_ACTION.SEARCH_INPUT_PLACEHOLDER')" <fluent-icon icon="search" class="search-icon" size="16" />
icon-left="i-lucide-search" <input
size="sm" v-model="query"
class="w-full" type="search"
:aria-label="t('BULK_ACTION.SEARCH_INPUT_PLACEHOLDER')" :placeholder="$t('BULK_ACTION.SEARCH_INPUT_PLACEHOLDER')"
/> class="reset-base !outline-0 !text-sm label--search_input"
/>
</div>
</header> </header>
<ul <ul class="labels-list__body">
v-if="hasLabels"
class="flex-1 overflow-y-auto m-0 list-none"
role="listbox"
:aria-label="t('BULK_ACTION.LABELS.ASSIGN_LABELS')"
>
<li v-if="!hasFilteredLabels" class="p-2 text-center">
<span class="text-sm text-n-slate-11">{{
t('BULK_ACTION.LABELS.NO_LABELS_FOUND')
}}</span>
</li>
<li <li
v-for="label in filteredLabels" v-for="label in filteredLabels"
:key="label.id" :key="label.id"
class="my-1 mx-0 py-0 px-2.5" class="label__list-item"
role="option"
:aria-selected="isLabelSelected(label.title)"
> >
<label <label
class="items-center rounded-md cursor-pointer flex py-1 px-2.5 hover:bg-n-slate-3 dark:hover:bg-n-solid-3 has-[:checked]:bg-n-slate-2" class="item"
:class="{ 'label-selected': isLabelSelected(label.title) }"
> >
<input <input
v-model="selectedLabels" v-model="selectedLabels"
type="checkbox" type="checkbox"
:value="label.title" :value="label.title"
class="my-0 ltr:mr-2.5 rtl:ml-2.5" class="label-checkbox"
:aria-label="label.title"
/> />
<span <span
class="overflow-hidden flex-grow w-full text-sm whitespace-nowrap text-ellipsis" class="overflow-hidden label-title whitespace-nowrap text-ellipsis"
> >
{{ label.title }} {{ label.title }}
</span> </span>
<span <span
class="rounded-md h-3 w-3 flex-shrink-0 border border-solid border-n-weak" class="label-pill"
:style="{ backgroundColor: label.color }" :style="{ backgroundColor: label.color }"
/> />
</label> </label>
</li> </li>
</ul> </ul>
<div v-else class="p-2 text-center"> <footer class="labels-list__footer">
<span class="text-sm text-n-slate-11">{{
t('CONTACTS_BULK_ACTIONS.NO_LABELS_FOUND')
}}</span>
</div>
<footer class="p-2">
<NextButton <NextButton
sm sm
type="submit" type="submit"
class="w-full" :label="$t('BULK_ACTION.LABELS.ASSIGN_SELECTED_LABELS')"
:label="t('BULK_ACTION.LABELS.ASSIGN_SELECTED_LABELS')"
:disabled="!selectedLabels.length" :disabled="!selectedLabels.length"
@click="handleAssign" @click="$emit('assign', selectedLabels)"
/> />
</footer> </footer>
</div> </div>
@@ -131,11 +102,107 @@ const handleAssign = () => {
</template> </template>
<style scoped lang="scss"> <style scoped lang="scss">
.triangle { .labels-list {
@apply block z-10 absolute text-left -top-3 ltr:right-[--triangle-position] rtl:left-[--triangle-position]; @apply flex flex-col max-h-[15rem] min-h-[auto];
svg path { .labels-list__header {
@apply fill-n-alpha-3 backdrop-blur-[100px] stroke-n-weak; @apply bg-n-alpha-3 backdrop-blur-[100px] py-0 px-2.5;
}
.labels-list__body {
@apply flex-1 overflow-y-auto py-2.5 mx-0;
}
.labels-list__footer {
@apply p-2;
button {
@apply w-full;
.button__content {
@apply text-center;
}
}
} }
} }
.label-list-search {
@apply bg-n-alpha-black2 py-0 px-2.5 border border-solid border-n-strong rounded-md;
.search-icon {
@apply text-n-slate-10;
}
.label--search_input {
@apply border-0 text-xs m-0 dark:bg-transparent bg-transparent h-[unset] w-full;
}
}
.labels-container {
@apply absolute ltr:right-2 rtl:left-2 top-12 origin-top-right w-auto z-20 max-w-[15rem] min-w-[15rem] bg-n-alpha-3 backdrop-blur-[100px] border-n-weak rounded-lg border border-solid shadow-md;
.header {
@apply p-2.5;
span {
@apply text-sm font-medium;
}
}
.container {
@apply max-h-[15rem] overflow-y-auto;
.label__list-container {
@apply h-full;
}
}
.triangle {
@apply block z-10 absolute text-left -top-3 ltr:right-[--triangle-position] rtl:left-[--triangle-position];
svg path {
@apply fill-n-alpha-3 backdrop-blur-[100px] stroke-n-weak;
}
}
}
ul {
@apply m-0 list-none;
}
.labels-placeholder {
@apply p-2;
}
.label__list-item {
@apply my-1 mx-0 py-0 px-2.5;
.item {
@apply items-center rounded-md cursor-pointer flex py-1 px-2.5 hover:bg-n-slate-3 dark:hover:bg-n-solid-3;
&.label-selected {
@apply bg-n-slate-2;
}
span {
@apply text-sm;
}
.label-checkbox {
@apply my-0 ltr:mr-2.5 rtl:ml-2.5;
}
.label-title {
@apply flex-grow w-full;
}
.label-pill {
@apply rounded-md h-3 w-3 flex-shrink-0 border border-solid border-n-weak;
}
}
}
.search-container {
@apply bg-n-alpha-3 backdrop-blur-[100px] py-0 px-2.5 sticky top-0 z-20;
}
</style> </style>
@@ -24,7 +24,7 @@
}, },
"LABELS": { "LABELS": {
"ASSIGN_LABELS": "Assign labels", "ASSIGN_LABELS": "Assign labels",
"NO_LABELS_FOUND": "No labels found", "NO_LABELS_FOUND": "No labels found for",
"ASSIGN_SELECTED_LABELS": "Assign selected labels", "ASSIGN_SELECTED_LABELS": "Assign selected labels",
"ASSIGN_SUCCESFUL": "Labels assigned successfully.", "ASSIGN_SUCCESFUL": "Labels assigned successfully.",
"ASSIGN_FAILED": "Failed to assign labels. Please try again." "ASSIGN_FAILED": "Failed to assign labels. Please try again."
@@ -571,16 +571,6 @@
"ACTIVE_EMPTY_STATE_TITLE": "በአሁኑ ጊዜ ንቁ እውቂያዎች የሉም 🌙" "ACTIVE_EMPTY_STATE_TITLE": "በአሁኑ ጊዜ ንቁ እውቂያዎች የሉም 🌙"
} }
}, },
"CONTACTS_BULK_ACTIONS": {
"ASSIGN_LABELS": "Assign Labels",
"ASSIGN_LABELS_SUCCESS": "Labels assigned successfully.",
"ASSIGN_LABELS_FAILED": "Failed to assign labels",
"DESCRIPTION": "Select the labels you want to add to the selected contacts.",
"NO_LABELS_FOUND": "No labels available yet.",
"SELECTED_COUNT": "{count} selected",
"CLEAR_SELECTION": "Clear selection",
"SELECT_ALL": "Select all ({count})"
},
"COMPOSE_NEW_CONVERSATION": { "COMPOSE_NEW_CONVERSATION": {
"CONTACT_SEARCH": { "CONTACT_SEARCH": {
"ERROR_MESSAGE": "We couldnt complete the search. Please try again." "ERROR_MESSAGE": "We couldnt complete the search. Please try again."
@@ -863,7 +863,6 @@
}, },
"RESPONSES": { "RESPONSES": {
"HEADER": "FAQs", "HEADER": "FAQs",
"PENDING_FAQS": "Pending FAQs",
"ADD_NEW": "Create new FAQ", "ADD_NEW": "Create new FAQ",
"DOCUMENTABLE": { "DOCUMENTABLE": {
"CONVERSATION": "Conversation #{id}" "CONVERSATION": "Conversation #{id}"
@@ -903,10 +902,6 @@
"APPROVED": "Approved", "APPROVED": "Approved",
"ALL": "All" "ALL": "All"
}, },
"PENDING_BANNER": {
"TITLE": "Captain has found some FAQs your customers were looking for.",
"ACTION": "Click here to review"
},
"FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.", "FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.",
"CREATE": { "CREATE": {
"TITLE": "Add an FAQ", "TITLE": "Add an FAQ",
@@ -937,15 +932,13 @@
"APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved" "APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved"
}, },
"OPTIONS": { "OPTIONS": {
"APPROVE": "Approve", "APPROVE": "Mark as approved",
"EDIT_RESPONSE": "Edit", "EDIT_RESPONSE": "Edit FAQ",
"DELETE_RESPONSE": "Delete" "DELETE_RESPONSE": "Delete FAQ"
}, },
"EMPTY_STATE": { "EMPTY_STATE": {
"TITLE": "No FAQs Found", "TITLE": "No FAQs Found",
"NO_PENDING_TITLE": "There are no more pending FAQs to review",
"SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.", "SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.",
"CLEAR_SEARCH": "Clear active filters",
"FEATURE_SPOTLIGHT": { "FEATURE_SPOTLIGHT": {
"TITLE": "Captain FAQ", "TITLE": "Captain FAQ",
"NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it." "NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it."
@@ -24,7 +24,7 @@
}, },
"LABELS": { "LABELS": {
"ASSIGN_LABELS": "إضافة وسم", "ASSIGN_LABELS": "إضافة وسم",
"NO_LABELS_FOUND": "لم يتم العثور على تصنيفات", "NO_LABELS_FOUND": "لم يتم العثور على تسميات لـ",
"ASSIGN_SELECTED_LABELS": "تعيين التسميات المحددة", "ASSIGN_SELECTED_LABELS": "تعيين التسميات المحددة",
"ASSIGN_SUCCESFUL": "تم تعيين التسميات بنجاح.", "ASSIGN_SUCCESFUL": "تم تعيين التسميات بنجاح.",
"ASSIGN_FAILED": "فشل في تعيين التسميات ، الرجاء المحاولة مرة أخرى." "ASSIGN_FAILED": "فشل في تعيين التسميات ، الرجاء المحاولة مرة أخرى."
@@ -571,16 +571,6 @@
"ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙" "ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙"
} }
}, },
"CONTACTS_BULK_ACTIONS": {
"ASSIGN_LABELS": "تعيين التسميات",
"ASSIGN_LABELS_SUCCESS": "تم تعيين التسميات بنجاح.",
"ASSIGN_LABELS_FAILED": "Failed to assign labels",
"DESCRIPTION": "Select the labels you want to add to the selected contacts.",
"NO_LABELS_FOUND": "No labels available yet.",
"SELECTED_COUNT": "{count} selected",
"CLEAR_SELECTION": "Clear selection",
"SELECT_ALL": "Select all ({count})"
},
"COMPOSE_NEW_CONVERSATION": { "COMPOSE_NEW_CONVERSATION": {
"CONTACT_SEARCH": { "CONTACT_SEARCH": {
"ERROR_MESSAGE": "We couldnt complete the search. Please try again." "ERROR_MESSAGE": "We couldnt complete the search. Please try again."
@@ -863,7 +863,6 @@
}, },
"RESPONSES": { "RESPONSES": {
"HEADER": "FAQs", "HEADER": "FAQs",
"PENDING_FAQS": "Pending FAQs",
"ADD_NEW": "Create new FAQ", "ADD_NEW": "Create new FAQ",
"DOCUMENTABLE": { "DOCUMENTABLE": {
"CONVERSATION": "Conversation #{id}" "CONVERSATION": "Conversation #{id}"
@@ -903,10 +902,6 @@
"APPROVED": "Approved", "APPROVED": "Approved",
"ALL": "الكل" "ALL": "الكل"
}, },
"PENDING_BANNER": {
"TITLE": "Captain has found some FAQs your customers were looking for.",
"ACTION": "Click here to review"
},
"FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.", "FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.",
"CREATE": { "CREATE": {
"TITLE": "Add an FAQ", "TITLE": "Add an FAQ",
@@ -937,15 +932,13 @@
"APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved" "APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved"
}, },
"OPTIONS": { "OPTIONS": {
"APPROVE": "Approve", "APPROVE": "Mark as approved",
"EDIT_RESPONSE": "تعديل", "EDIT_RESPONSE": "Edit FAQ",
"DELETE_RESPONSE": "حذف" "DELETE_RESPONSE": "Delete FAQ"
}, },
"EMPTY_STATE": { "EMPTY_STATE": {
"TITLE": "No FAQs Found", "TITLE": "No FAQs Found",
"NO_PENDING_TITLE": "There are no more pending FAQs to review",
"SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.", "SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.",
"CLEAR_SEARCH": "Clear active filters",
"FEATURE_SPOTLIGHT": { "FEATURE_SPOTLIGHT": {
"TITLE": "Captain FAQ", "TITLE": "Captain FAQ",
"NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it." "NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it."
@@ -24,7 +24,7 @@
}, },
"LABELS": { "LABELS": {
"ASSIGN_LABELS": "Assign labels", "ASSIGN_LABELS": "Assign labels",
"NO_LABELS_FOUND": "No labels found", "NO_LABELS_FOUND": "No labels found for",
"ASSIGN_SELECTED_LABELS": "Assign selected labels", "ASSIGN_SELECTED_LABELS": "Assign selected labels",
"ASSIGN_SUCCESFUL": "Labels assigned successfully.", "ASSIGN_SUCCESFUL": "Labels assigned successfully.",
"ASSIGN_FAILED": "Failed to assign labels. Please try again." "ASSIGN_FAILED": "Failed to assign labels. Please try again."
@@ -571,16 +571,6 @@
"ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙" "ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙"
} }
}, },
"CONTACTS_BULK_ACTIONS": {
"ASSIGN_LABELS": "Assign Labels",
"ASSIGN_LABELS_SUCCESS": "Labels assigned successfully.",
"ASSIGN_LABELS_FAILED": "Failed to assign labels",
"DESCRIPTION": "Select the labels you want to add to the selected contacts.",
"NO_LABELS_FOUND": "No labels available yet.",
"SELECTED_COUNT": "{count} selected",
"CLEAR_SELECTION": "Clear selection",
"SELECT_ALL": "Select all ({count})"
},
"COMPOSE_NEW_CONVERSATION": { "COMPOSE_NEW_CONVERSATION": {
"CONTACT_SEARCH": { "CONTACT_SEARCH": {
"ERROR_MESSAGE": "We couldnt complete the search. Please try again." "ERROR_MESSAGE": "We couldnt complete the search. Please try again."
@@ -863,7 +863,6 @@
}, },
"RESPONSES": { "RESPONSES": {
"HEADER": "FAQs", "HEADER": "FAQs",
"PENDING_FAQS": "Pending FAQs",
"ADD_NEW": "Create new FAQ", "ADD_NEW": "Create new FAQ",
"DOCUMENTABLE": { "DOCUMENTABLE": {
"CONVERSATION": "Conversation #{id}" "CONVERSATION": "Conversation #{id}"
@@ -903,10 +902,6 @@
"APPROVED": "Approved", "APPROVED": "Approved",
"ALL": "All" "ALL": "All"
}, },
"PENDING_BANNER": {
"TITLE": "Captain has found some FAQs your customers were looking for.",
"ACTION": "Click here to review"
},
"FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.", "FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.",
"CREATE": { "CREATE": {
"TITLE": "Add an FAQ", "TITLE": "Add an FAQ",
@@ -937,15 +932,13 @@
"APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved" "APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved"
}, },
"OPTIONS": { "OPTIONS": {
"APPROVE": "Approve", "APPROVE": "Mark as approved",
"EDIT_RESPONSE": "Edit", "EDIT_RESPONSE": "Edit FAQ",
"DELETE_RESPONSE": "Delete" "DELETE_RESPONSE": "Delete FAQ"
}, },
"EMPTY_STATE": { "EMPTY_STATE": {
"TITLE": "No FAQs Found", "TITLE": "No FAQs Found",
"NO_PENDING_TITLE": "There are no more pending FAQs to review",
"SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.", "SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.",
"CLEAR_SEARCH": "Clear active filters",
"FEATURE_SPOTLIGHT": { "FEATURE_SPOTLIGHT": {
"TITLE": "Captain FAQ", "TITLE": "Captain FAQ",
"NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it." "NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it."
@@ -24,7 +24,7 @@
}, },
"LABELS": { "LABELS": {
"ASSIGN_LABELS": "Assign labels", "ASSIGN_LABELS": "Assign labels",
"NO_LABELS_FOUND": "Няма намерени етикети", "NO_LABELS_FOUND": "No labels found for",
"ASSIGN_SELECTED_LABELS": "Assign selected labels", "ASSIGN_SELECTED_LABELS": "Assign selected labels",
"ASSIGN_SUCCESFUL": "Labels assigned successfully.", "ASSIGN_SUCCESFUL": "Labels assigned successfully.",
"ASSIGN_FAILED": "Failed to assign labels. Please try again." "ASSIGN_FAILED": "Failed to assign labels. Please try again."
@@ -571,16 +571,6 @@
"ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙" "ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙"
} }
}, },
"CONTACTS_BULK_ACTIONS": {
"ASSIGN_LABELS": "Assign Labels",
"ASSIGN_LABELS_SUCCESS": "Labels assigned successfully.",
"ASSIGN_LABELS_FAILED": "Failed to assign labels",
"DESCRIPTION": "Select the labels you want to add to the selected contacts.",
"NO_LABELS_FOUND": "No labels available yet.",
"SELECTED_COUNT": "{count} selected",
"CLEAR_SELECTION": "Clear selection",
"SELECT_ALL": "Select all ({count})"
},
"COMPOSE_NEW_CONVERSATION": { "COMPOSE_NEW_CONVERSATION": {
"CONTACT_SEARCH": { "CONTACT_SEARCH": {
"ERROR_MESSAGE": "We couldnt complete the search. Please try again." "ERROR_MESSAGE": "We couldnt complete the search. Please try again."
@@ -863,7 +863,6 @@
}, },
"RESPONSES": { "RESPONSES": {
"HEADER": "FAQs", "HEADER": "FAQs",
"PENDING_FAQS": "Pending FAQs",
"ADD_NEW": "Create new FAQ", "ADD_NEW": "Create new FAQ",
"DOCUMENTABLE": { "DOCUMENTABLE": {
"CONVERSATION": "Conversation #{id}" "CONVERSATION": "Conversation #{id}"
@@ -903,10 +902,6 @@
"APPROVED": "Approved", "APPROVED": "Approved",
"ALL": "Всички" "ALL": "Всички"
}, },
"PENDING_BANNER": {
"TITLE": "Captain has found some FAQs your customers were looking for.",
"ACTION": "Click here to review"
},
"FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.", "FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.",
"CREATE": { "CREATE": {
"TITLE": "Add an FAQ", "TITLE": "Add an FAQ",
@@ -937,15 +932,13 @@
"APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved" "APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved"
}, },
"OPTIONS": { "OPTIONS": {
"APPROVE": "Approve", "APPROVE": "Mark as approved",
"EDIT_RESPONSE": "Редактирай", "EDIT_RESPONSE": "Edit FAQ",
"DELETE_RESPONSE": "Изтрий" "DELETE_RESPONSE": "Delete FAQ"
}, },
"EMPTY_STATE": { "EMPTY_STATE": {
"TITLE": "No FAQs Found", "TITLE": "No FAQs Found",
"NO_PENDING_TITLE": "There are no more pending FAQs to review",
"SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.", "SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.",
"CLEAR_SEARCH": "Clear active filters",
"FEATURE_SPOTLIGHT": { "FEATURE_SPOTLIGHT": {
"TITLE": "Captain FAQ", "TITLE": "Captain FAQ",
"NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it." "NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it."
@@ -24,7 +24,7 @@
}, },
"LABELS": { "LABELS": {
"ASSIGN_LABELS": "Assign labels", "ASSIGN_LABELS": "Assign labels",
"NO_LABELS_FOUND": "No labels found", "NO_LABELS_FOUND": "No labels found for",
"ASSIGN_SELECTED_LABELS": "Assign selected labels", "ASSIGN_SELECTED_LABELS": "Assign selected labels",
"ASSIGN_SUCCESFUL": "Labels assigned successfully.", "ASSIGN_SUCCESFUL": "Labels assigned successfully.",
"ASSIGN_FAILED": "Failed to assign labels. Please try again." "ASSIGN_FAILED": "Failed to assign labels. Please try again."
@@ -571,16 +571,6 @@
"ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙" "ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙"
} }
}, },
"CONTACTS_BULK_ACTIONS": {
"ASSIGN_LABELS": "Assign Labels",
"ASSIGN_LABELS_SUCCESS": "Labels assigned successfully.",
"ASSIGN_LABELS_FAILED": "Failed to assign labels",
"DESCRIPTION": "Select the labels you want to add to the selected contacts.",
"NO_LABELS_FOUND": "No labels available yet.",
"SELECTED_COUNT": "{count} selected",
"CLEAR_SELECTION": "Clear selection",
"SELECT_ALL": "Select all ({count})"
},
"COMPOSE_NEW_CONVERSATION": { "COMPOSE_NEW_CONVERSATION": {
"CONTACT_SEARCH": { "CONTACT_SEARCH": {
"ERROR_MESSAGE": "We couldnt complete the search. Please try again." "ERROR_MESSAGE": "We couldnt complete the search. Please try again."
@@ -863,7 +863,6 @@
}, },
"RESPONSES": { "RESPONSES": {
"HEADER": "FAQs", "HEADER": "FAQs",
"PENDING_FAQS": "Pending FAQs",
"ADD_NEW": "Create new FAQ", "ADD_NEW": "Create new FAQ",
"DOCUMENTABLE": { "DOCUMENTABLE": {
"CONVERSATION": "Conversation #{id}" "CONVERSATION": "Conversation #{id}"
@@ -903,10 +902,6 @@
"APPROVED": "Approved", "APPROVED": "Approved",
"ALL": "All" "ALL": "All"
}, },
"PENDING_BANNER": {
"TITLE": "Captain has found some FAQs your customers were looking for.",
"ACTION": "Click here to review"
},
"FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.", "FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.",
"CREATE": { "CREATE": {
"TITLE": "Add an FAQ", "TITLE": "Add an FAQ",
@@ -937,15 +932,13 @@
"APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved" "APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved"
}, },
"OPTIONS": { "OPTIONS": {
"APPROVE": "Approve", "APPROVE": "Mark as approved",
"EDIT_RESPONSE": "Edit", "EDIT_RESPONSE": "Edit FAQ",
"DELETE_RESPONSE": "Delete" "DELETE_RESPONSE": "Delete FAQ"
}, },
"EMPTY_STATE": { "EMPTY_STATE": {
"TITLE": "No FAQs Found", "TITLE": "No FAQs Found",
"NO_PENDING_TITLE": "There are no more pending FAQs to review",
"SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.", "SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.",
"CLEAR_SEARCH": "Clear active filters",
"FEATURE_SPOTLIGHT": { "FEATURE_SPOTLIGHT": {
"TITLE": "Captain FAQ", "TITLE": "Captain FAQ",
"NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it." "NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it."
@@ -24,7 +24,7 @@
}, },
"LABELS": { "LABELS": {
"ASSIGN_LABELS": "Assignar etiquetes", "ASSIGN_LABELS": "Assignar etiquetes",
"NO_LABELS_FOUND": "No s'han trobat etiquetes", "NO_LABELS_FOUND": "No s'han trobat etiquetes per a",
"ASSIGN_SELECTED_LABELS": "Assigna les etiquetes seleccionades", "ASSIGN_SELECTED_LABELS": "Assigna les etiquetes seleccionades",
"ASSIGN_SUCCESFUL": "L'etiqueta s'ha assignat correctament.", "ASSIGN_SUCCESFUL": "L'etiqueta s'ha assignat correctament.",
"ASSIGN_FAILED": "No s'han pogut assignar les etiquetes. Torna-ho a provar." "ASSIGN_FAILED": "No s'han pogut assignar les etiquetes. Torna-ho a provar."
@@ -571,16 +571,6 @@
"ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙" "ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙"
} }
}, },
"CONTACTS_BULK_ACTIONS": {
"ASSIGN_LABELS": "Assign Labels",
"ASSIGN_LABELS_SUCCESS": "L'etiqueta s'ha assignat correctament.",
"ASSIGN_LABELS_FAILED": "Failed to assign labels",
"DESCRIPTION": "Select the labels you want to add to the selected contacts.",
"NO_LABELS_FOUND": "No labels available yet.",
"SELECTED_COUNT": "{count} selected",
"CLEAR_SELECTION": "Clear selection",
"SELECT_ALL": "Select all ({count})"
},
"COMPOSE_NEW_CONVERSATION": { "COMPOSE_NEW_CONVERSATION": {
"CONTACT_SEARCH": { "CONTACT_SEARCH": {
"ERROR_MESSAGE": "We couldnt complete the search. Please try again." "ERROR_MESSAGE": "We couldnt complete the search. Please try again."
@@ -863,7 +863,6 @@
}, },
"RESPONSES": { "RESPONSES": {
"HEADER": "FAQs", "HEADER": "FAQs",
"PENDING_FAQS": "Pending FAQs",
"ADD_NEW": "Create new FAQ", "ADD_NEW": "Create new FAQ",
"DOCUMENTABLE": { "DOCUMENTABLE": {
"CONVERSATION": "Conversation #{id}" "CONVERSATION": "Conversation #{id}"
@@ -903,10 +902,6 @@
"APPROVED": "Approved", "APPROVED": "Approved",
"ALL": "Totes" "ALL": "Totes"
}, },
"PENDING_BANNER": {
"TITLE": "Captain has found some FAQs your customers were looking for.",
"ACTION": "Click here to review"
},
"FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.", "FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.",
"CREATE": { "CREATE": {
"TITLE": "Add an FAQ", "TITLE": "Add an FAQ",
@@ -937,15 +932,13 @@
"APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved" "APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved"
}, },
"OPTIONS": { "OPTIONS": {
"APPROVE": "Approve", "APPROVE": "Mark as approved",
"EDIT_RESPONSE": "Edita", "EDIT_RESPONSE": "Edit FAQ",
"DELETE_RESPONSE": "Esborrar" "DELETE_RESPONSE": "Delete FAQ"
}, },
"EMPTY_STATE": { "EMPTY_STATE": {
"TITLE": "No FAQs Found", "TITLE": "No FAQs Found",
"NO_PENDING_TITLE": "There are no more pending FAQs to review",
"SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.", "SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.",
"CLEAR_SEARCH": "Clear active filters",
"FEATURE_SPOTLIGHT": { "FEATURE_SPOTLIGHT": {
"TITLE": "Captain FAQ", "TITLE": "Captain FAQ",
"NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it." "NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it."
@@ -24,7 +24,7 @@
}, },
"LABELS": { "LABELS": {
"ASSIGN_LABELS": "Assign labels", "ASSIGN_LABELS": "Assign labels",
"NO_LABELS_FOUND": "No labels found", "NO_LABELS_FOUND": "No labels found for",
"ASSIGN_SELECTED_LABELS": "Assign selected labels", "ASSIGN_SELECTED_LABELS": "Assign selected labels",
"ASSIGN_SUCCESFUL": "Labels assigned successfully.", "ASSIGN_SUCCESFUL": "Labels assigned successfully.",
"ASSIGN_FAILED": "Failed to assign labels. Please try again." "ASSIGN_FAILED": "Failed to assign labels. Please try again."
@@ -571,16 +571,6 @@
"ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙" "ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙"
} }
}, },
"CONTACTS_BULK_ACTIONS": {
"ASSIGN_LABELS": "Assign Labels",
"ASSIGN_LABELS_SUCCESS": "Labels assigned successfully.",
"ASSIGN_LABELS_FAILED": "Failed to assign labels",
"DESCRIPTION": "Select the labels you want to add to the selected contacts.",
"NO_LABELS_FOUND": "No labels available yet.",
"SELECTED_COUNT": "{count} selected",
"CLEAR_SELECTION": "Clear selection",
"SELECT_ALL": "Select all ({count})"
},
"COMPOSE_NEW_CONVERSATION": { "COMPOSE_NEW_CONVERSATION": {
"CONTACT_SEARCH": { "CONTACT_SEARCH": {
"ERROR_MESSAGE": "We couldnt complete the search. Please try again." "ERROR_MESSAGE": "We couldnt complete the search. Please try again."
@@ -863,7 +863,6 @@
}, },
"RESPONSES": { "RESPONSES": {
"HEADER": "FAQs", "HEADER": "FAQs",
"PENDING_FAQS": "Pending FAQs",
"ADD_NEW": "Create new FAQ", "ADD_NEW": "Create new FAQ",
"DOCUMENTABLE": { "DOCUMENTABLE": {
"CONVERSATION": "Conversation #{id}" "CONVERSATION": "Conversation #{id}"
@@ -903,10 +902,6 @@
"APPROVED": "Approved", "APPROVED": "Approved",
"ALL": "Vše" "ALL": "Vše"
}, },
"PENDING_BANNER": {
"TITLE": "Captain has found some FAQs your customers were looking for.",
"ACTION": "Click here to review"
},
"FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.", "FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.",
"CREATE": { "CREATE": {
"TITLE": "Add an FAQ", "TITLE": "Add an FAQ",
@@ -937,15 +932,13 @@
"APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved" "APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved"
}, },
"OPTIONS": { "OPTIONS": {
"APPROVE": "Approve", "APPROVE": "Mark as approved",
"EDIT_RESPONSE": "Upravit", "EDIT_RESPONSE": "Edit FAQ",
"DELETE_RESPONSE": "Vymazat" "DELETE_RESPONSE": "Delete FAQ"
}, },
"EMPTY_STATE": { "EMPTY_STATE": {
"TITLE": "No FAQs Found", "TITLE": "No FAQs Found",
"NO_PENDING_TITLE": "There are no more pending FAQs to review",
"SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.", "SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.",
"CLEAR_SEARCH": "Clear active filters",
"FEATURE_SPOTLIGHT": { "FEATURE_SPOTLIGHT": {
"TITLE": "Captain FAQ", "TITLE": "Captain FAQ",
"NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it." "NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it."
@@ -24,7 +24,7 @@
}, },
"LABELS": { "LABELS": {
"ASSIGN_LABELS": "Assign labels", "ASSIGN_LABELS": "Assign labels",
"NO_LABELS_FOUND": "Ingen labels fundet", "NO_LABELS_FOUND": "Ingen etiketter fundet for",
"ASSIGN_SELECTED_LABELS": "Tildel valgte etiketter", "ASSIGN_SELECTED_LABELS": "Tildel valgte etiketter",
"ASSIGN_SUCCESFUL": "Etiketter tildelt med succes.", "ASSIGN_SUCCESFUL": "Etiketter tildelt med succes.",
"ASSIGN_FAILED": "Failed to assign labels. Please try again." "ASSIGN_FAILED": "Failed to assign labels. Please try again."
@@ -571,16 +571,6 @@
"ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙" "ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙"
} }
}, },
"CONTACTS_BULK_ACTIONS": {
"ASSIGN_LABELS": "Tildel Etiketter",
"ASSIGN_LABELS_SUCCESS": "Etiketter tildelt med succes.",
"ASSIGN_LABELS_FAILED": "Failed to assign labels",
"DESCRIPTION": "Select the labels you want to add to the selected contacts.",
"NO_LABELS_FOUND": "No labels available yet.",
"SELECTED_COUNT": "{count} selected",
"CLEAR_SELECTION": "Clear selection",
"SELECT_ALL": "Select all ({count})"
},
"COMPOSE_NEW_CONVERSATION": { "COMPOSE_NEW_CONVERSATION": {
"CONTACT_SEARCH": { "CONTACT_SEARCH": {
"ERROR_MESSAGE": "We couldnt complete the search. Please try again." "ERROR_MESSAGE": "We couldnt complete the search. Please try again."
@@ -863,7 +863,6 @@
}, },
"RESPONSES": { "RESPONSES": {
"HEADER": "FAQs", "HEADER": "FAQs",
"PENDING_FAQS": "Pending FAQs",
"ADD_NEW": "Create new FAQ", "ADD_NEW": "Create new FAQ",
"DOCUMENTABLE": { "DOCUMENTABLE": {
"CONVERSATION": "Conversation #{id}" "CONVERSATION": "Conversation #{id}"
@@ -903,10 +902,6 @@
"APPROVED": "Approved", "APPROVED": "Approved",
"ALL": "Alle" "ALL": "Alle"
}, },
"PENDING_BANNER": {
"TITLE": "Captain has found some FAQs your customers were looking for.",
"ACTION": "Click here to review"
},
"FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.", "FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.",
"CREATE": { "CREATE": {
"TITLE": "Add an FAQ", "TITLE": "Add an FAQ",
@@ -937,15 +932,13 @@
"APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved" "APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved"
}, },
"OPTIONS": { "OPTIONS": {
"APPROVE": "Approve", "APPROVE": "Mark as approved",
"EDIT_RESPONSE": "Rediger", "EDIT_RESPONSE": "Edit FAQ",
"DELETE_RESPONSE": "Slet" "DELETE_RESPONSE": "Delete FAQ"
}, },
"EMPTY_STATE": { "EMPTY_STATE": {
"TITLE": "No FAQs Found", "TITLE": "No FAQs Found",
"NO_PENDING_TITLE": "There are no more pending FAQs to review",
"SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.", "SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.",
"CLEAR_SEARCH": "Clear active filters",
"FEATURE_SPOTLIGHT": { "FEATURE_SPOTLIGHT": {
"TITLE": "Captain FAQ", "TITLE": "Captain FAQ",
"NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it." "NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it."
@@ -24,7 +24,7 @@
}, },
"LABELS": { "LABELS": {
"ASSIGN_LABELS": "Labels zuweisen", "ASSIGN_LABELS": "Labels zuweisen",
"NO_LABELS_FOUND": "Keine Labels gefunden", "NO_LABELS_FOUND": "Keine Labels gefunden für",
"ASSIGN_SELECTED_LABELS": "Ausgewählte Labels zuweisen", "ASSIGN_SELECTED_LABELS": "Ausgewählte Labels zuweisen",
"ASSIGN_SUCCESFUL": "Labels erfolgreich zugewiesen.", "ASSIGN_SUCCESFUL": "Labels erfolgreich zugewiesen.",
"ASSIGN_FAILED": "Labels konnten nicht zugewiesen werden. Bitte versuchen Sie es erneut." "ASSIGN_FAILED": "Labels konnten nicht zugewiesen werden. Bitte versuchen Sie es erneut."
@@ -571,16 +571,6 @@
"ACTIVE_EMPTY_STATE_TITLE": "Im Moment sind keine Kontakte aktiv 🌙" "ACTIVE_EMPTY_STATE_TITLE": "Im Moment sind keine Kontakte aktiv 🌙"
} }
}, },
"CONTACTS_BULK_ACTIONS": {
"ASSIGN_LABELS": "Labels zuweisen",
"ASSIGN_LABELS_SUCCESS": "Labels erfolgreich zugewiesen.",
"ASSIGN_LABELS_FAILED": "Failed to assign labels",
"DESCRIPTION": "Select the labels you want to add to the selected contacts.",
"NO_LABELS_FOUND": "No labels available yet.",
"SELECTED_COUNT": "{count} selected",
"CLEAR_SELECTION": "Clear selection",
"SELECT_ALL": "Select all ({count})"
},
"COMPOSE_NEW_CONVERSATION": { "COMPOSE_NEW_CONVERSATION": {
"CONTACT_SEARCH": { "CONTACT_SEARCH": {
"ERROR_MESSAGE": "Wir konnten die Suche nicht abschließen. Bitte versuch es erneut." "ERROR_MESSAGE": "Wir konnten die Suche nicht abschließen. Bitte versuch es erneut."
@@ -863,7 +863,6 @@
}, },
"RESPONSES": { "RESPONSES": {
"HEADER": "FAQs", "HEADER": "FAQs",
"PENDING_FAQS": "Pending FAQs",
"ADD_NEW": "Create new FAQ", "ADD_NEW": "Create new FAQ",
"DOCUMENTABLE": { "DOCUMENTABLE": {
"CONVERSATION": "Conversation #{id}" "CONVERSATION": "Conversation #{id}"
@@ -903,10 +902,6 @@
"APPROVED": "Approved", "APPROVED": "Approved",
"ALL": "Alle" "ALL": "Alle"
}, },
"PENDING_BANNER": {
"TITLE": "Captain has found some FAQs your customers were looking for.",
"ACTION": "Click here to review"
},
"FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.", "FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.",
"CREATE": { "CREATE": {
"TITLE": "Add an FAQ", "TITLE": "Add an FAQ",
@@ -937,15 +932,13 @@
"APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved" "APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved"
}, },
"OPTIONS": { "OPTIONS": {
"APPROVE": "Approve", "APPROVE": "Mark as approved",
"EDIT_RESPONSE": "Bearbeiten", "EDIT_RESPONSE": "Edit FAQ",
"DELETE_RESPONSE": "Löschen" "DELETE_RESPONSE": "Delete FAQ"
}, },
"EMPTY_STATE": { "EMPTY_STATE": {
"TITLE": "No FAQs Found", "TITLE": "No FAQs Found",
"NO_PENDING_TITLE": "There are no more pending FAQs to review",
"SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.", "SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.",
"CLEAR_SEARCH": "Clear active filters",
"FEATURE_SPOTLIGHT": { "FEATURE_SPOTLIGHT": {
"TITLE": "Captain FAQ", "TITLE": "Captain FAQ",
"NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it." "NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it."
@@ -24,7 +24,7 @@
}, },
"LABELS": { "LABELS": {
"ASSIGN_LABELS": "Assign labels", "ASSIGN_LABELS": "Assign labels",
"NO_LABELS_FOUND": "Δεν βρέθηκαν ετικέτες", "NO_LABELS_FOUND": "Δεν βρέθηκαν πρότυπα για",
"ASSIGN_SELECTED_LABELS": "Ανάθεση επιλεγμένων ετικετών", "ASSIGN_SELECTED_LABELS": "Ανάθεση επιλεγμένων ετικετών",
"ASSIGN_SUCCESFUL": "Επιτυχής ανάθεση ετικετών.", "ASSIGN_SUCCESFUL": "Επιτυχής ανάθεση ετικετών.",
"ASSIGN_FAILED": "Failed to assign labels. Please try again." "ASSIGN_FAILED": "Failed to assign labels. Please try again."
@@ -571,16 +571,6 @@
"ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙" "ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙"
} }
}, },
"CONTACTS_BULK_ACTIONS": {
"ASSIGN_LABELS": "Ανάθεση Ετικετών",
"ASSIGN_LABELS_SUCCESS": "Επιτυχής ανάθεση ετικετών.",
"ASSIGN_LABELS_FAILED": "Failed to assign labels",
"DESCRIPTION": "Select the labels you want to add to the selected contacts.",
"NO_LABELS_FOUND": "No labels available yet.",
"SELECTED_COUNT": "{count} selected",
"CLEAR_SELECTION": "Clear selection",
"SELECT_ALL": "Select all ({count})"
},
"COMPOSE_NEW_CONVERSATION": { "COMPOSE_NEW_CONVERSATION": {
"CONTACT_SEARCH": { "CONTACT_SEARCH": {
"ERROR_MESSAGE": "We couldnt complete the search. Please try again." "ERROR_MESSAGE": "We couldnt complete the search. Please try again."
@@ -863,7 +863,6 @@
}, },
"RESPONSES": { "RESPONSES": {
"HEADER": "FAQs", "HEADER": "FAQs",
"PENDING_FAQS": "Pending FAQs",
"ADD_NEW": "Create new FAQ", "ADD_NEW": "Create new FAQ",
"DOCUMENTABLE": { "DOCUMENTABLE": {
"CONVERSATION": "Conversation #{id}" "CONVERSATION": "Conversation #{id}"
@@ -903,10 +902,6 @@
"APPROVED": "Approved", "APPROVED": "Approved",
"ALL": "Όλες" "ALL": "Όλες"
}, },
"PENDING_BANNER": {
"TITLE": "Captain has found some FAQs your customers were looking for.",
"ACTION": "Click here to review"
},
"FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.", "FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.",
"CREATE": { "CREATE": {
"TITLE": "Add an FAQ", "TITLE": "Add an FAQ",
@@ -937,15 +932,13 @@
"APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved" "APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved"
}, },
"OPTIONS": { "OPTIONS": {
"APPROVE": "Approve", "APPROVE": "Mark as approved",
"EDIT_RESPONSE": "Επεξεργασία", "EDIT_RESPONSE": "Edit FAQ",
"DELETE_RESPONSE": "Διαγραφή" "DELETE_RESPONSE": "Delete FAQ"
}, },
"EMPTY_STATE": { "EMPTY_STATE": {
"TITLE": "No FAQs Found", "TITLE": "No FAQs Found",
"NO_PENDING_TITLE": "There are no more pending FAQs to review",
"SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.", "SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.",
"CLEAR_SEARCH": "Clear active filters",
"FEATURE_SPOTLIGHT": { "FEATURE_SPOTLIGHT": {
"TITLE": "Captain FAQ", "TITLE": "Captain FAQ",
"NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it." "NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it."
@@ -24,7 +24,7 @@
}, },
"LABELS": { "LABELS": {
"ASSIGN_LABELS": "Assign labels", "ASSIGN_LABELS": "Assign labels",
"NO_LABELS_FOUND": "No labels found", "NO_LABELS_FOUND": "No labels found for",
"ASSIGN_SELECTED_LABELS": "Assign selected labels", "ASSIGN_SELECTED_LABELS": "Assign selected labels",
"ASSIGN_SUCCESFUL": "Labels assigned successfully.", "ASSIGN_SUCCESFUL": "Labels assigned successfully.",
"ASSIGN_FAILED": "Failed to assign labels. Please try again." "ASSIGN_FAILED": "Failed to assign labels. Please try again."
@@ -572,27 +572,6 @@
"ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙" "ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙"
} }
}, },
"CONTACTS_BULK_ACTIONS": {
"ASSIGN_LABELS": "Assign Labels",
"ASSIGN_LABELS_SUCCESS": "Labels assigned successfully.",
"ASSIGN_LABELS_FAILED": "Failed to assign labels",
"DESCRIPTION": "Select the labels you want to add to the selected contacts.",
"NO_LABELS_FOUND": "No labels available yet.",
"SELECTED_COUNT": "{count} selected",
"CLEAR_SELECTION": "Clear selection",
"SELECT_ALL": "Select all ({count})",
"DELETE_CONTACTS": "Delete",
"DELETE_SUCCESS": "Contacts deleted successfully.",
"DELETE_FAILED": "Failed to delete contacts.",
"DELETE_DIALOG": {
"TITLE": "Delete selected contacts",
"SINGULAR_TITLE": "Delete selected contact",
"DESCRIPTION": "This will permanently delete {count} selected contacts. This action cannot be undone.",
"SINGULAR_DESCRIPTION": "This will permanently delete the selected contact. This action cannot be undone.",
"CONFIRM_MULTIPLE": "Delete contacts",
"CONFIRM_SINGLE": "Delete contact"
}
},
"COMPOSE_NEW_CONVERSATION": { "COMPOSE_NEW_CONVERSATION": {
"CONTACT_SEARCH": { "CONTACT_SEARCH": {
@@ -861,7 +861,6 @@
}, },
"RESPONSES": { "RESPONSES": {
"HEADER": "FAQs", "HEADER": "FAQs",
"PENDING_FAQS": "Pending FAQs",
"ADD_NEW": "Create new FAQ", "ADD_NEW": "Create new FAQ",
"DOCUMENTABLE": { "DOCUMENTABLE": {
"CONVERSATION": "Conversation #{id}" "CONVERSATION": "Conversation #{id}"
@@ -901,10 +900,6 @@
"APPROVED": "Approved", "APPROVED": "Approved",
"ALL": "All" "ALL": "All"
}, },
"PENDING_BANNER": {
"TITLE": "Captain has found some FAQs your customers were looking for.",
"ACTION": "Click here to review"
},
"FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.", "FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.",
"CREATE": { "CREATE": {
"TITLE": "Add an FAQ", "TITLE": "Add an FAQ",
@@ -936,15 +931,13 @@
"APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved" "APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved"
}, },
"OPTIONS": { "OPTIONS": {
"APPROVE": "Approve", "APPROVE": "Mark as approved",
"EDIT_RESPONSE": "Edit", "EDIT_RESPONSE": "Edit FAQ",
"DELETE_RESPONSE": "Delete" "DELETE_RESPONSE": "Delete FAQ"
}, },
"EMPTY_STATE": { "EMPTY_STATE": {
"TITLE": "No FAQs Found", "TITLE": "No FAQs Found",
"NO_PENDING_TITLE": "There are no more pending FAQs to review",
"SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.", "SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.",
"CLEAR_SEARCH": "Clear active filters",
"FEATURE_SPOTLIGHT": { "FEATURE_SPOTLIGHT": {
"TITLE": "Captain FAQ", "TITLE": "Captain FAQ",
"NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it." "NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it."
@@ -24,7 +24,7 @@
}, },
"LABELS": { "LABELS": {
"ASSIGN_LABELS": "Asignar etiqueta", "ASSIGN_LABELS": "Asignar etiqueta",
"NO_LABELS_FOUND": "No se encontraron etiquetas", "NO_LABELS_FOUND": "No se encontraron etiquetas para",
"ASSIGN_SELECTED_LABELS": "Asignar etiquetas seleccionadas", "ASSIGN_SELECTED_LABELS": "Asignar etiquetas seleccionadas",
"ASSIGN_SUCCESFUL": "Etiquetas asignadas correctamente.", "ASSIGN_SUCCESFUL": "Etiquetas asignadas correctamente.",
"ASSIGN_FAILED": "Error al asignar etiquetas, inténtalo de nuevo." "ASSIGN_FAILED": "Error al asignar etiquetas, inténtalo de nuevo."
@@ -571,16 +571,6 @@
"ACTIVE_EMPTY_STATE_TITLE": "No hay contactos activos por el momento 🌙" "ACTIVE_EMPTY_STATE_TITLE": "No hay contactos activos por el momento 🌙"
} }
}, },
"CONTACTS_BULK_ACTIONS": {
"ASSIGN_LABELS": "Asignar etiquetas",
"ASSIGN_LABELS_SUCCESS": "Etiquetas asignadas correctamente.",
"ASSIGN_LABELS_FAILED": "Failed to assign labels",
"DESCRIPTION": "Select the labels you want to add to the selected contacts.",
"NO_LABELS_FOUND": "No labels available yet.",
"SELECTED_COUNT": "{count} selected",
"CLEAR_SELECTION": "Clear selection",
"SELECT_ALL": "Select all ({count})"
},
"COMPOSE_NEW_CONVERSATION": { "COMPOSE_NEW_CONVERSATION": {
"CONTACT_SEARCH": { "CONTACT_SEARCH": {
"ERROR_MESSAGE": "No pudimos completar la búsqueda. Por favor, inténtalo de nuevo." "ERROR_MESSAGE": "No pudimos completar la búsqueda. Por favor, inténtalo de nuevo."
@@ -863,7 +863,6 @@
}, },
"RESPONSES": { "RESPONSES": {
"HEADER": "Preguntas frecuentes", "HEADER": "Preguntas frecuentes",
"PENDING_FAQS": "Pending FAQs",
"ADD_NEW": "Create new FAQ", "ADD_NEW": "Create new FAQ",
"DOCUMENTABLE": { "DOCUMENTABLE": {
"CONVERSATION": "Conversation #{id}" "CONVERSATION": "Conversation #{id}"
@@ -903,10 +902,6 @@
"APPROVED": "Approved", "APPROVED": "Approved",
"ALL": "Todos" "ALL": "Todos"
}, },
"PENDING_BANNER": {
"TITLE": "Captain has found some FAQs your customers were looking for.",
"ACTION": "Click here to review"
},
"FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.", "FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.",
"CREATE": { "CREATE": {
"TITLE": "Add an FAQ", "TITLE": "Add an FAQ",
@@ -937,15 +932,13 @@
"APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved" "APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved"
}, },
"OPTIONS": { "OPTIONS": {
"APPROVE": "Approve", "APPROVE": "Mark as approved",
"EDIT_RESPONSE": "Editar", "EDIT_RESPONSE": "Edit FAQ",
"DELETE_RESPONSE": "Eliminar" "DELETE_RESPONSE": "Delete FAQ"
}, },
"EMPTY_STATE": { "EMPTY_STATE": {
"TITLE": "No FAQs Found", "TITLE": "No FAQs Found",
"NO_PENDING_TITLE": "There are no more pending FAQs to review",
"SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.", "SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.",
"CLEAR_SEARCH": "Clear active filters",
"FEATURE_SPOTLIGHT": { "FEATURE_SPOTLIGHT": {
"TITLE": "Captain FAQ", "TITLE": "Captain FAQ",
"NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it." "NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it."
@@ -24,7 +24,7 @@
}, },
"LABELS": { "LABELS": {
"ASSIGN_LABELS": "Assign labels", "ASSIGN_LABELS": "Assign labels",
"NO_LABELS_FOUND": "No labels found", "NO_LABELS_FOUND": "No labels found for",
"ASSIGN_SELECTED_LABELS": "Assign selected labels", "ASSIGN_SELECTED_LABELS": "Assign selected labels",
"ASSIGN_SUCCESFUL": "Labels assigned successfully.", "ASSIGN_SUCCESFUL": "Labels assigned successfully.",
"ASSIGN_FAILED": "Failed to assign labels. Please try again." "ASSIGN_FAILED": "Failed to assign labels. Please try again."
@@ -571,16 +571,6 @@
"ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙" "ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙"
} }
}, },
"CONTACTS_BULK_ACTIONS": {
"ASSIGN_LABELS": "Assign Labels",
"ASSIGN_LABELS_SUCCESS": "Labels assigned successfully.",
"ASSIGN_LABELS_FAILED": "Failed to assign labels",
"DESCRIPTION": "Select the labels you want to add to the selected contacts.",
"NO_LABELS_FOUND": "No labels available yet.",
"SELECTED_COUNT": "{count} selected",
"CLEAR_SELECTION": "Clear selection",
"SELECT_ALL": "Select all ({count})"
},
"COMPOSE_NEW_CONVERSATION": { "COMPOSE_NEW_CONVERSATION": {
"CONTACT_SEARCH": { "CONTACT_SEARCH": {
"ERROR_MESSAGE": "We couldnt complete the search. Please try again." "ERROR_MESSAGE": "We couldnt complete the search. Please try again."
@@ -863,7 +863,6 @@
}, },
"RESPONSES": { "RESPONSES": {
"HEADER": "FAQs", "HEADER": "FAQs",
"PENDING_FAQS": "Pending FAQs",
"ADD_NEW": "Create new FAQ", "ADD_NEW": "Create new FAQ",
"DOCUMENTABLE": { "DOCUMENTABLE": {
"CONVERSATION": "Conversation #{id}" "CONVERSATION": "Conversation #{id}"
@@ -903,10 +902,6 @@
"APPROVED": "Approved", "APPROVED": "Approved",
"ALL": "All" "ALL": "All"
}, },
"PENDING_BANNER": {
"TITLE": "Captain has found some FAQs your customers were looking for.",
"ACTION": "Click here to review"
},
"FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.", "FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.",
"CREATE": { "CREATE": {
"TITLE": "Add an FAQ", "TITLE": "Add an FAQ",
@@ -937,15 +932,13 @@
"APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved" "APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved"
}, },
"OPTIONS": { "OPTIONS": {
"APPROVE": "Approve", "APPROVE": "Mark as approved",
"EDIT_RESPONSE": "Edit", "EDIT_RESPONSE": "Edit FAQ",
"DELETE_RESPONSE": "Delete" "DELETE_RESPONSE": "Delete FAQ"
}, },
"EMPTY_STATE": { "EMPTY_STATE": {
"TITLE": "No FAQs Found", "TITLE": "No FAQs Found",
"NO_PENDING_TITLE": "There are no more pending FAQs to review",
"SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.", "SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.",
"CLEAR_SEARCH": "Clear active filters",
"FEATURE_SPOTLIGHT": { "FEATURE_SPOTLIGHT": {
"TITLE": "Captain FAQ", "TITLE": "Captain FAQ",
"NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it." "NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it."
@@ -24,7 +24,7 @@
}, },
"LABELS": { "LABELS": {
"ASSIGN_LABELS": "برچسب اختصاص دهید", "ASSIGN_LABELS": "برچسب اختصاص دهید",
"NO_LABELS_FOUND": "هیچ برچسبی یافت نشد", "NO_LABELS_FOUND": "هیچ برچسبی یافت نشد برای",
"ASSIGN_SELECTED_LABELS": "اختصاص برچسب‌های انتخاب شده", "ASSIGN_SELECTED_LABELS": "اختصاص برچسب‌های انتخاب شده",
"ASSIGN_SUCCESFUL": "برچسب‌ها با موفقیت اختصاص یافتند.", "ASSIGN_SUCCESFUL": "برچسب‌ها با موفقیت اختصاص یافتند.",
"ASSIGN_FAILED": "اختصاص برچسب‌ به صورت موفق انجام نشد، لطفا دوباره امتحان کنید." "ASSIGN_FAILED": "اختصاص برچسب‌ به صورت موفق انجام نشد، لطفا دوباره امتحان کنید."
@@ -571,16 +571,6 @@
"ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙" "ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙"
} }
}, },
"CONTACTS_BULK_ACTIONS": {
"ASSIGN_LABELS": "اختصاص برچسب‌ها",
"ASSIGN_LABELS_SUCCESS": "برچسب‌ها با موفقیت اختصاص یافتند.",
"ASSIGN_LABELS_FAILED": "Failed to assign labels",
"DESCRIPTION": "Select the labels you want to add to the selected contacts.",
"NO_LABELS_FOUND": "No labels available yet.",
"SELECTED_COUNT": "{count} selected",
"CLEAR_SELECTION": "Clear selection",
"SELECT_ALL": "Select all ({count})"
},
"COMPOSE_NEW_CONVERSATION": { "COMPOSE_NEW_CONVERSATION": {
"CONTACT_SEARCH": { "CONTACT_SEARCH": {
"ERROR_MESSAGE": "We couldnt complete the search. Please try again." "ERROR_MESSAGE": "We couldnt complete the search. Please try again."
@@ -863,7 +863,6 @@
}, },
"RESPONSES": { "RESPONSES": {
"HEADER": "FAQs", "HEADER": "FAQs",
"PENDING_FAQS": "Pending FAQs",
"ADD_NEW": "Create new FAQ", "ADD_NEW": "Create new FAQ",
"DOCUMENTABLE": { "DOCUMENTABLE": {
"CONVERSATION": "Conversation #{id}" "CONVERSATION": "Conversation #{id}"
@@ -903,10 +902,6 @@
"APPROVED": "Approved", "APPROVED": "Approved",
"ALL": "همه" "ALL": "همه"
}, },
"PENDING_BANNER": {
"TITLE": "Captain has found some FAQs your customers were looking for.",
"ACTION": "Click here to review"
},
"FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.", "FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.",
"CREATE": { "CREATE": {
"TITLE": "Add an FAQ", "TITLE": "Add an FAQ",
@@ -937,15 +932,13 @@
"APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved" "APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved"
}, },
"OPTIONS": { "OPTIONS": {
"APPROVE": "Approve", "APPROVE": "Mark as approved",
"EDIT_RESPONSE": "ویرایش", "EDIT_RESPONSE": "Edit FAQ",
"DELETE_RESPONSE": "حذف" "DELETE_RESPONSE": "Delete FAQ"
}, },
"EMPTY_STATE": { "EMPTY_STATE": {
"TITLE": "No FAQs Found", "TITLE": "No FAQs Found",
"NO_PENDING_TITLE": "There are no more pending FAQs to review",
"SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.", "SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.",
"CLEAR_SEARCH": "Clear active filters",
"FEATURE_SPOTLIGHT": { "FEATURE_SPOTLIGHT": {
"TITLE": "Captain FAQ", "TITLE": "Captain FAQ",
"NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it." "NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it."
@@ -24,7 +24,7 @@
}, },
"LABELS": { "LABELS": {
"ASSIGN_LABELS": "Assign labels", "ASSIGN_LABELS": "Assign labels",
"NO_LABELS_FOUND": "No labels found", "NO_LABELS_FOUND": "No labels found for",
"ASSIGN_SELECTED_LABELS": "Assign selected labels", "ASSIGN_SELECTED_LABELS": "Assign selected labels",
"ASSIGN_SUCCESFUL": "Labels assigned successfully.", "ASSIGN_SUCCESFUL": "Labels assigned successfully.",
"ASSIGN_FAILED": "Failed to assign labels. Please try again." "ASSIGN_FAILED": "Failed to assign labels. Please try again."
@@ -571,16 +571,6 @@
"ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙" "ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙"
} }
}, },
"CONTACTS_BULK_ACTIONS": {
"ASSIGN_LABELS": "Assign Labels",
"ASSIGN_LABELS_SUCCESS": "Labels assigned successfully.",
"ASSIGN_LABELS_FAILED": "Failed to assign labels",
"DESCRIPTION": "Select the labels you want to add to the selected contacts.",
"NO_LABELS_FOUND": "No labels available yet.",
"SELECTED_COUNT": "{count} selected",
"CLEAR_SELECTION": "Clear selection",
"SELECT_ALL": "Select all ({count})"
},
"COMPOSE_NEW_CONVERSATION": { "COMPOSE_NEW_CONVERSATION": {
"CONTACT_SEARCH": { "CONTACT_SEARCH": {
"ERROR_MESSAGE": "We couldnt complete the search. Please try again." "ERROR_MESSAGE": "We couldnt complete the search. Please try again."
@@ -863,7 +863,6 @@
}, },
"RESPONSES": { "RESPONSES": {
"HEADER": "FAQs", "HEADER": "FAQs",
"PENDING_FAQS": "Pending FAQs",
"ADD_NEW": "Create new FAQ", "ADD_NEW": "Create new FAQ",
"DOCUMENTABLE": { "DOCUMENTABLE": {
"CONVERSATION": "Conversation #{id}" "CONVERSATION": "Conversation #{id}"
@@ -903,10 +902,6 @@
"APPROVED": "Approved", "APPROVED": "Approved",
"ALL": "Kaikki" "ALL": "Kaikki"
}, },
"PENDING_BANNER": {
"TITLE": "Captain has found some FAQs your customers were looking for.",
"ACTION": "Click here to review"
},
"FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.", "FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.",
"CREATE": { "CREATE": {
"TITLE": "Add an FAQ", "TITLE": "Add an FAQ",
@@ -937,15 +932,13 @@
"APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved" "APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved"
}, },
"OPTIONS": { "OPTIONS": {
"APPROVE": "Approve", "APPROVE": "Mark as approved",
"EDIT_RESPONSE": "Muokkaa", "EDIT_RESPONSE": "Edit FAQ",
"DELETE_RESPONSE": "Poista" "DELETE_RESPONSE": "Delete FAQ"
}, },
"EMPTY_STATE": { "EMPTY_STATE": {
"TITLE": "No FAQs Found", "TITLE": "No FAQs Found",
"NO_PENDING_TITLE": "There are no more pending FAQs to review",
"SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.", "SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.",
"CLEAR_SEARCH": "Clear active filters",
"FEATURE_SPOTLIGHT": { "FEATURE_SPOTLIGHT": {
"TITLE": "Captain FAQ", "TITLE": "Captain FAQ",
"NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it." "NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it."
@@ -24,7 +24,7 @@
}, },
"LABELS": { "LABELS": {
"ASSIGN_LABELS": "Assigner une étiquette", "ASSIGN_LABELS": "Assigner une étiquette",
"NO_LABELS_FOUND": "Aucune étiquette trouvée", "NO_LABELS_FOUND": "Aucune étiquette trouvée pour",
"ASSIGN_SELECTED_LABELS": "Assigner les étiquettes sélectionnées", "ASSIGN_SELECTED_LABELS": "Assigner les étiquettes sélectionnées",
"ASSIGN_SUCCESFUL": "Étiquettes attribuées avec succès.", "ASSIGN_SUCCESFUL": "Étiquettes attribuées avec succès.",
"ASSIGN_FAILED": "Impossible d'attribuer les étiquettes, veuillez réessayer." "ASSIGN_FAILED": "Impossible d'attribuer les étiquettes, veuillez réessayer."
@@ -571,16 +571,6 @@
"ACTIVE_EMPTY_STATE_TITLE": "Aucun contact n'est actif pour le moment 🌙" "ACTIVE_EMPTY_STATE_TITLE": "Aucun contact n'est actif pour le moment 🌙"
} }
}, },
"CONTACTS_BULK_ACTIONS": {
"ASSIGN_LABELS": "Assigner des étiquettes",
"ASSIGN_LABELS_SUCCESS": "Étiquettes attribuées avec succès.",
"ASSIGN_LABELS_FAILED": "Failed to assign labels",
"DESCRIPTION": "Select the labels you want to add to the selected contacts.",
"NO_LABELS_FOUND": "No labels available yet.",
"SELECTED_COUNT": "{count} selected",
"CLEAR_SELECTION": "Clear selection",
"SELECT_ALL": "Select all ({count})"
},
"COMPOSE_NEW_CONVERSATION": { "COMPOSE_NEW_CONVERSATION": {
"CONTACT_SEARCH": { "CONTACT_SEARCH": {
"ERROR_MESSAGE": "We couldnt complete the search. Please try again." "ERROR_MESSAGE": "We couldnt complete the search. Please try again."
@@ -863,7 +863,6 @@
}, },
"RESPONSES": { "RESPONSES": {
"HEADER": "FAQs", "HEADER": "FAQs",
"PENDING_FAQS": "Pending FAQs",
"ADD_NEW": "Create new FAQ", "ADD_NEW": "Create new FAQ",
"DOCUMENTABLE": { "DOCUMENTABLE": {
"CONVERSATION": "Conversation #{id}" "CONVERSATION": "Conversation #{id}"
@@ -903,10 +902,6 @@
"APPROVED": "Approved", "APPROVED": "Approved",
"ALL": "Tous" "ALL": "Tous"
}, },
"PENDING_BANNER": {
"TITLE": "Captain has found some FAQs your customers were looking for.",
"ACTION": "Click here to review"
},
"FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.", "FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.",
"CREATE": { "CREATE": {
"TITLE": "Add an FAQ", "TITLE": "Add an FAQ",
@@ -937,15 +932,13 @@
"APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved" "APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved"
}, },
"OPTIONS": { "OPTIONS": {
"APPROVE": "Approve", "APPROVE": "Mark as approved",
"EDIT_RESPONSE": "Modifier", "EDIT_RESPONSE": "Edit FAQ",
"DELETE_RESPONSE": "Supprimer" "DELETE_RESPONSE": "Delete FAQ"
}, },
"EMPTY_STATE": { "EMPTY_STATE": {
"TITLE": "No FAQs Found", "TITLE": "No FAQs Found",
"NO_PENDING_TITLE": "There are no more pending FAQs to review",
"SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.", "SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.",
"CLEAR_SEARCH": "Clear active filters",
"FEATURE_SPOTLIGHT": { "FEATURE_SPOTLIGHT": {
"TITLE": "Captain FAQ", "TITLE": "Captain FAQ",
"NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it." "NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it."
@@ -24,7 +24,7 @@
}, },
"LABELS": { "LABELS": {
"ASSIGN_LABELS": "Assign labels", "ASSIGN_LABELS": "Assign labels",
"NO_LABELS_FOUND": "לא נמצאו תוויות", "NO_LABELS_FOUND": "לא נצאו תוויות עבור",
"ASSIGN_SELECTED_LABELS": "שייך תוויות נבחרות", "ASSIGN_SELECTED_LABELS": "שייך תוויות נבחרות",
"ASSIGN_SUCCESFUL": "תוויות שוייכו בהצלחה.", "ASSIGN_SUCCESFUL": "תוויות שוייכו בהצלחה.",
"ASSIGN_FAILED": "Failed to assign labels. Please try again." "ASSIGN_FAILED": "Failed to assign labels. Please try again."
@@ -571,16 +571,6 @@
"ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙" "ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙"
} }
}, },
"CONTACTS_BULK_ACTIONS": {
"ASSIGN_LABELS": "הקצה תוויות",
"ASSIGN_LABELS_SUCCESS": "תוויות שוייכו בהצלחה.",
"ASSIGN_LABELS_FAILED": "Failed to assign labels",
"DESCRIPTION": "Select the labels you want to add to the selected contacts.",
"NO_LABELS_FOUND": "No labels available yet.",
"SELECTED_COUNT": "{count} selected",
"CLEAR_SELECTION": "Clear selection",
"SELECT_ALL": "Select all ({count})"
},
"COMPOSE_NEW_CONVERSATION": { "COMPOSE_NEW_CONVERSATION": {
"CONTACT_SEARCH": { "CONTACT_SEARCH": {
"ERROR_MESSAGE": "We couldnt complete the search. Please try again." "ERROR_MESSAGE": "We couldnt complete the search. Please try again."
@@ -863,7 +863,6 @@
}, },
"RESPONSES": { "RESPONSES": {
"HEADER": "FAQs", "HEADER": "FAQs",
"PENDING_FAQS": "Pending FAQs",
"ADD_NEW": "Create new FAQ", "ADD_NEW": "Create new FAQ",
"DOCUMENTABLE": { "DOCUMENTABLE": {
"CONVERSATION": "Conversation #{id}" "CONVERSATION": "Conversation #{id}"
@@ -903,10 +902,6 @@
"APPROVED": "Approved", "APPROVED": "Approved",
"ALL": "הכל" "ALL": "הכל"
}, },
"PENDING_BANNER": {
"TITLE": "Captain has found some FAQs your customers were looking for.",
"ACTION": "Click here to review"
},
"FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.", "FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.",
"CREATE": { "CREATE": {
"TITLE": "Add an FAQ", "TITLE": "Add an FAQ",
@@ -937,15 +932,13 @@
"APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved" "APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved"
}, },
"OPTIONS": { "OPTIONS": {
"APPROVE": "Approve", "APPROVE": "Mark as approved",
"EDIT_RESPONSE": "ערוך", "EDIT_RESPONSE": "Edit FAQ",
"DELETE_RESPONSE": "מחק" "DELETE_RESPONSE": "Delete FAQ"
}, },
"EMPTY_STATE": { "EMPTY_STATE": {
"TITLE": "No FAQs Found", "TITLE": "No FAQs Found",
"NO_PENDING_TITLE": "There are no more pending FAQs to review",
"SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.", "SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.",
"CLEAR_SEARCH": "Clear active filters",
"FEATURE_SPOTLIGHT": { "FEATURE_SPOTLIGHT": {
"TITLE": "Captain FAQ", "TITLE": "Captain FAQ",
"NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it." "NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it."
@@ -24,7 +24,7 @@
}, },
"LABELS": { "LABELS": {
"ASSIGN_LABELS": "Assign labels", "ASSIGN_LABELS": "Assign labels",
"NO_LABELS_FOUND": "No labels found", "NO_LABELS_FOUND": "No labels found for",
"ASSIGN_SELECTED_LABELS": "Assign selected labels", "ASSIGN_SELECTED_LABELS": "Assign selected labels",
"ASSIGN_SUCCESFUL": "Labels assigned successfully.", "ASSIGN_SUCCESFUL": "Labels assigned successfully.",
"ASSIGN_FAILED": "Failed to assign labels. Please try again." "ASSIGN_FAILED": "Failed to assign labels. Please try again."
@@ -571,16 +571,6 @@
"ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙" "ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙"
} }
}, },
"CONTACTS_BULK_ACTIONS": {
"ASSIGN_LABELS": "Assign Labels",
"ASSIGN_LABELS_SUCCESS": "Labels assigned successfully.",
"ASSIGN_LABELS_FAILED": "Failed to assign labels",
"DESCRIPTION": "Select the labels you want to add to the selected contacts.",
"NO_LABELS_FOUND": "No labels available yet.",
"SELECTED_COUNT": "{count} selected",
"CLEAR_SELECTION": "Clear selection",
"SELECT_ALL": "Select all ({count})"
},
"COMPOSE_NEW_CONVERSATION": { "COMPOSE_NEW_CONVERSATION": {
"CONTACT_SEARCH": { "CONTACT_SEARCH": {
"ERROR_MESSAGE": "We couldnt complete the search. Please try again." "ERROR_MESSAGE": "We couldnt complete the search. Please try again."
@@ -863,7 +863,6 @@
}, },
"RESPONSES": { "RESPONSES": {
"HEADER": "FAQs", "HEADER": "FAQs",
"PENDING_FAQS": "Pending FAQs",
"ADD_NEW": "Create new FAQ", "ADD_NEW": "Create new FAQ",
"DOCUMENTABLE": { "DOCUMENTABLE": {
"CONVERSATION": "Conversation #{id}" "CONVERSATION": "Conversation #{id}"
@@ -903,10 +902,6 @@
"APPROVED": "Approved", "APPROVED": "Approved",
"ALL": "All" "ALL": "All"
}, },
"PENDING_BANNER": {
"TITLE": "Captain has found some FAQs your customers were looking for.",
"ACTION": "Click here to review"
},
"FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.", "FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.",
"CREATE": { "CREATE": {
"TITLE": "Add an FAQ", "TITLE": "Add an FAQ",
@@ -937,15 +932,13 @@
"APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved" "APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved"
}, },
"OPTIONS": { "OPTIONS": {
"APPROVE": "Approve", "APPROVE": "Mark as approved",
"EDIT_RESPONSE": "Edit", "EDIT_RESPONSE": "Edit FAQ",
"DELETE_RESPONSE": "Delete" "DELETE_RESPONSE": "Delete FAQ"
}, },
"EMPTY_STATE": { "EMPTY_STATE": {
"TITLE": "No FAQs Found", "TITLE": "No FAQs Found",
"NO_PENDING_TITLE": "There are no more pending FAQs to review",
"SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.", "SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.",
"CLEAR_SEARCH": "Clear active filters",
"FEATURE_SPOTLIGHT": { "FEATURE_SPOTLIGHT": {
"TITLE": "Captain FAQ", "TITLE": "Captain FAQ",
"NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it." "NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it."
@@ -24,7 +24,7 @@
}, },
"LABELS": { "LABELS": {
"ASSIGN_LABELS": "Assign labels", "ASSIGN_LABELS": "Assign labels",
"NO_LABELS_FOUND": "No labels found", "NO_LABELS_FOUND": "No labels found for",
"ASSIGN_SELECTED_LABELS": "Assign selected labels", "ASSIGN_SELECTED_LABELS": "Assign selected labels",
"ASSIGN_SUCCESFUL": "Labels assigned successfully.", "ASSIGN_SUCCESFUL": "Labels assigned successfully.",
"ASSIGN_FAILED": "Failed to assign labels. Please try again." "ASSIGN_FAILED": "Failed to assign labels. Please try again."
@@ -571,16 +571,6 @@
"ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙" "ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙"
} }
}, },
"CONTACTS_BULK_ACTIONS": {
"ASSIGN_LABELS": "Assign Labels",
"ASSIGN_LABELS_SUCCESS": "Labels assigned successfully.",
"ASSIGN_LABELS_FAILED": "Failed to assign labels",
"DESCRIPTION": "Select the labels you want to add to the selected contacts.",
"NO_LABELS_FOUND": "No labels available yet.",
"SELECTED_COUNT": "{count} selected",
"CLEAR_SELECTION": "Clear selection",
"SELECT_ALL": "Select all ({count})"
},
"COMPOSE_NEW_CONVERSATION": { "COMPOSE_NEW_CONVERSATION": {
"CONTACT_SEARCH": { "CONTACT_SEARCH": {
"ERROR_MESSAGE": "We couldnt complete the search. Please try again." "ERROR_MESSAGE": "We couldnt complete the search. Please try again."
@@ -863,7 +863,6 @@
}, },
"RESPONSES": { "RESPONSES": {
"HEADER": "FAQs", "HEADER": "FAQs",
"PENDING_FAQS": "Pending FAQs",
"ADD_NEW": "Create new FAQ", "ADD_NEW": "Create new FAQ",
"DOCUMENTABLE": { "DOCUMENTABLE": {
"CONVERSATION": "Conversation #{id}" "CONVERSATION": "Conversation #{id}"
@@ -903,10 +902,6 @@
"APPROVED": "Approved", "APPROVED": "Approved",
"ALL": "Sve" "ALL": "Sve"
}, },
"PENDING_BANNER": {
"TITLE": "Captain has found some FAQs your customers were looking for.",
"ACTION": "Click here to review"
},
"FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.", "FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.",
"CREATE": { "CREATE": {
"TITLE": "Add an FAQ", "TITLE": "Add an FAQ",
@@ -937,15 +932,13 @@
"APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved" "APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved"
}, },
"OPTIONS": { "OPTIONS": {
"APPROVE": "Approve", "APPROVE": "Mark as approved",
"EDIT_RESPONSE": "Uredi", "EDIT_RESPONSE": "Edit FAQ",
"DELETE_RESPONSE": "Izbriši" "DELETE_RESPONSE": "Delete FAQ"
}, },
"EMPTY_STATE": { "EMPTY_STATE": {
"TITLE": "No FAQs Found", "TITLE": "No FAQs Found",
"NO_PENDING_TITLE": "There are no more pending FAQs to review",
"SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.", "SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.",
"CLEAR_SEARCH": "Clear active filters",
"FEATURE_SPOTLIGHT": { "FEATURE_SPOTLIGHT": {
"TITLE": "Captain FAQ", "TITLE": "Captain FAQ",
"NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it." "NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it."
@@ -24,7 +24,7 @@
}, },
"LABELS": { "LABELS": {
"ASSIGN_LABELS": "Címkék hozzárendelése", "ASSIGN_LABELS": "Címkék hozzárendelése",
"NO_LABELS_FOUND": "Nem találtunk címkét", "NO_LABELS_FOUND": "Nem található cimke erre:",
"ASSIGN_SELECTED_LABELS": "Válogatott címkék hozzárendelése", "ASSIGN_SELECTED_LABELS": "Válogatott címkék hozzárendelése",
"ASSIGN_SUCCESFUL": "Címkék hozzárendelése sikeres.", "ASSIGN_SUCCESFUL": "Címkék hozzárendelése sikeres.",
"ASSIGN_FAILED": "Nem sikerült címkéket hozzárendelni. Kérjük, próbálja újra." "ASSIGN_FAILED": "Nem sikerült címkéket hozzárendelni. Kérjük, próbálja újra."
@@ -571,16 +571,6 @@
"ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙" "ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙"
} }
}, },
"CONTACTS_BULK_ACTIONS": {
"ASSIGN_LABELS": "Cimke hozzáadása",
"ASSIGN_LABELS_SUCCESS": "Címkék hozzárendelése sikeres.",
"ASSIGN_LABELS_FAILED": "Failed to assign labels",
"DESCRIPTION": "Select the labels you want to add to the selected contacts.",
"NO_LABELS_FOUND": "No labels available yet.",
"SELECTED_COUNT": "{count} selected",
"CLEAR_SELECTION": "Clear selection",
"SELECT_ALL": "Select all ({count})"
},
"COMPOSE_NEW_CONVERSATION": { "COMPOSE_NEW_CONVERSATION": {
"CONTACT_SEARCH": { "CONTACT_SEARCH": {
"ERROR_MESSAGE": "We couldnt complete the search. Please try again." "ERROR_MESSAGE": "We couldnt complete the search. Please try again."
@@ -863,7 +863,6 @@
}, },
"RESPONSES": { "RESPONSES": {
"HEADER": "FAQs", "HEADER": "FAQs",
"PENDING_FAQS": "Pending FAQs",
"ADD_NEW": "Create new FAQ", "ADD_NEW": "Create new FAQ",
"DOCUMENTABLE": { "DOCUMENTABLE": {
"CONVERSATION": "Conversation #{id}" "CONVERSATION": "Conversation #{id}"
@@ -903,10 +902,6 @@
"APPROVED": "Approved", "APPROVED": "Approved",
"ALL": "Mind" "ALL": "Mind"
}, },
"PENDING_BANNER": {
"TITLE": "Captain has found some FAQs your customers were looking for.",
"ACTION": "Click here to review"
},
"FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.", "FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.",
"CREATE": { "CREATE": {
"TITLE": "Add an FAQ", "TITLE": "Add an FAQ",
@@ -937,15 +932,13 @@
"APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved" "APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved"
}, },
"OPTIONS": { "OPTIONS": {
"APPROVE": "Approve", "APPROVE": "Mark as approved",
"EDIT_RESPONSE": "Szerkesztés", "EDIT_RESPONSE": "Edit FAQ",
"DELETE_RESPONSE": "Törlés" "DELETE_RESPONSE": "Delete FAQ"
}, },
"EMPTY_STATE": { "EMPTY_STATE": {
"TITLE": "No FAQs Found", "TITLE": "No FAQs Found",
"NO_PENDING_TITLE": "There are no more pending FAQs to review",
"SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.", "SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.",
"CLEAR_SEARCH": "Clear active filters",
"FEATURE_SPOTLIGHT": { "FEATURE_SPOTLIGHT": {
"TITLE": "Captain FAQ", "TITLE": "Captain FAQ",
"NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it." "NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it."
@@ -24,7 +24,7 @@
}, },
"LABELS": { "LABELS": {
"ASSIGN_LABELS": "Assign labels", "ASSIGN_LABELS": "Assign labels",
"NO_LABELS_FOUND": "No labels found", "NO_LABELS_FOUND": "No labels found for",
"ASSIGN_SELECTED_LABELS": "Assign selected labels", "ASSIGN_SELECTED_LABELS": "Assign selected labels",
"ASSIGN_SUCCESFUL": "Labels assigned successfully.", "ASSIGN_SUCCESFUL": "Labels assigned successfully.",
"ASSIGN_FAILED": "Failed to assign labels. Please try again." "ASSIGN_FAILED": "Failed to assign labels. Please try again."
@@ -571,16 +571,6 @@
"ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙" "ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙"
} }
}, },
"CONTACTS_BULK_ACTIONS": {
"ASSIGN_LABELS": "Assign Labels",
"ASSIGN_LABELS_SUCCESS": "Labels assigned successfully.",
"ASSIGN_LABELS_FAILED": "Failed to assign labels",
"DESCRIPTION": "Select the labels you want to add to the selected contacts.",
"NO_LABELS_FOUND": "No labels available yet.",
"SELECTED_COUNT": "{count} selected",
"CLEAR_SELECTION": "Clear selection",
"SELECT_ALL": "Select all ({count})"
},
"COMPOSE_NEW_CONVERSATION": { "COMPOSE_NEW_CONVERSATION": {
"CONTACT_SEARCH": { "CONTACT_SEARCH": {
"ERROR_MESSAGE": "We couldnt complete the search. Please try again." "ERROR_MESSAGE": "We couldnt complete the search. Please try again."
@@ -863,7 +863,6 @@
}, },
"RESPONSES": { "RESPONSES": {
"HEADER": "FAQs", "HEADER": "FAQs",
"PENDING_FAQS": "Pending FAQs",
"ADD_NEW": "Create new FAQ", "ADD_NEW": "Create new FAQ",
"DOCUMENTABLE": { "DOCUMENTABLE": {
"CONVERSATION": "Conversation #{id}" "CONVERSATION": "Conversation #{id}"
@@ -903,10 +902,6 @@
"APPROVED": "Approved", "APPROVED": "Approved",
"ALL": "All" "ALL": "All"
}, },
"PENDING_BANNER": {
"TITLE": "Captain has found some FAQs your customers were looking for.",
"ACTION": "Click here to review"
},
"FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.", "FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.",
"CREATE": { "CREATE": {
"TITLE": "Add an FAQ", "TITLE": "Add an FAQ",
@@ -937,15 +932,13 @@
"APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved" "APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved"
}, },
"OPTIONS": { "OPTIONS": {
"APPROVE": "Approve", "APPROVE": "Mark as approved",
"EDIT_RESPONSE": "Edit", "EDIT_RESPONSE": "Edit FAQ",
"DELETE_RESPONSE": "Delete" "DELETE_RESPONSE": "Delete FAQ"
}, },
"EMPTY_STATE": { "EMPTY_STATE": {
"TITLE": "No FAQs Found", "TITLE": "No FAQs Found",
"NO_PENDING_TITLE": "There are no more pending FAQs to review",
"SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.", "SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.",
"CLEAR_SEARCH": "Clear active filters",
"FEATURE_SPOTLIGHT": { "FEATURE_SPOTLIGHT": {
"TITLE": "Captain FAQ", "TITLE": "Captain FAQ",
"NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it." "NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it."
@@ -24,7 +24,7 @@
}, },
"LABELS": { "LABELS": {
"ASSIGN_LABELS": "Assign labels", "ASSIGN_LABELS": "Assign labels",
"NO_LABELS_FOUND": "Tidak ada label", "NO_LABELS_FOUND": "Tidak ada label ditemukan untuk",
"ASSIGN_SELECTED_LABELS": "Tugaskan label terpilih", "ASSIGN_SELECTED_LABELS": "Tugaskan label terpilih",
"ASSIGN_SUCCESFUL": "Label berhasil ditugaskan.", "ASSIGN_SUCCESFUL": "Label berhasil ditugaskan.",
"ASSIGN_FAILED": "Failed to assign labels. Please try again." "ASSIGN_FAILED": "Failed to assign labels. Please try again."
@@ -571,16 +571,6 @@
"ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙" "ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙"
} }
}, },
"CONTACTS_BULK_ACTIONS": {
"ASSIGN_LABELS": "Tugaskan Label",
"ASSIGN_LABELS_SUCCESS": "Label berhasil ditugaskan.",
"ASSIGN_LABELS_FAILED": "Failed to assign labels",
"DESCRIPTION": "Select the labels you want to add to the selected contacts.",
"NO_LABELS_FOUND": "No labels available yet.",
"SELECTED_COUNT": "{count} selected",
"CLEAR_SELECTION": "Clear selection",
"SELECT_ALL": "Select all ({count})"
},
"COMPOSE_NEW_CONVERSATION": { "COMPOSE_NEW_CONVERSATION": {
"CONTACT_SEARCH": { "CONTACT_SEARCH": {
"ERROR_MESSAGE": "We couldnt complete the search. Please try again." "ERROR_MESSAGE": "We couldnt complete the search. Please try again."
@@ -863,7 +863,6 @@
}, },
"RESPONSES": { "RESPONSES": {
"HEADER": "FAQs", "HEADER": "FAQs",
"PENDING_FAQS": "Pending FAQs",
"ADD_NEW": "Create new FAQ", "ADD_NEW": "Create new FAQ",
"DOCUMENTABLE": { "DOCUMENTABLE": {
"CONVERSATION": "Conversation #{id}" "CONVERSATION": "Conversation #{id}"
@@ -903,10 +902,6 @@
"APPROVED": "Approved", "APPROVED": "Approved",
"ALL": "Semua" "ALL": "Semua"
}, },
"PENDING_BANNER": {
"TITLE": "Captain has found some FAQs your customers were looking for.",
"ACTION": "Click here to review"
},
"FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.", "FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.",
"CREATE": { "CREATE": {
"TITLE": "Add an FAQ", "TITLE": "Add an FAQ",
@@ -937,15 +932,13 @@
"APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved" "APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved"
}, },
"OPTIONS": { "OPTIONS": {
"APPROVE": "Approve", "APPROVE": "Mark as approved",
"EDIT_RESPONSE": "Edit", "EDIT_RESPONSE": "Edit FAQ",
"DELETE_RESPONSE": "Hapus" "DELETE_RESPONSE": "Delete FAQ"
}, },
"EMPTY_STATE": { "EMPTY_STATE": {
"TITLE": "No FAQs Found", "TITLE": "No FAQs Found",
"NO_PENDING_TITLE": "There are no more pending FAQs to review",
"SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.", "SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.",
"CLEAR_SEARCH": "Clear active filters",
"FEATURE_SPOTLIGHT": { "FEATURE_SPOTLIGHT": {
"TITLE": "Captain FAQ", "TITLE": "Captain FAQ",
"NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it." "NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it."
@@ -24,7 +24,7 @@
}, },
"LABELS": { "LABELS": {
"ASSIGN_LABELS": "Assign labels", "ASSIGN_LABELS": "Assign labels",
"NO_LABELS_FOUND": "Engar merkingar fundust", "NO_LABELS_FOUND": "No labels found for",
"ASSIGN_SELECTED_LABELS": "Assign selected labels", "ASSIGN_SELECTED_LABELS": "Assign selected labels",
"ASSIGN_SUCCESFUL": "Labels assigned successfully.", "ASSIGN_SUCCESFUL": "Labels assigned successfully.",
"ASSIGN_FAILED": "Failed to assign labels. Please try again." "ASSIGN_FAILED": "Failed to assign labels. Please try again."
@@ -571,16 +571,6 @@
"ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙" "ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙"
} }
}, },
"CONTACTS_BULK_ACTIONS": {
"ASSIGN_LABELS": "Assign Labels",
"ASSIGN_LABELS_SUCCESS": "Labels assigned successfully.",
"ASSIGN_LABELS_FAILED": "Failed to assign labels",
"DESCRIPTION": "Select the labels you want to add to the selected contacts.",
"NO_LABELS_FOUND": "No labels available yet.",
"SELECTED_COUNT": "{count} selected",
"CLEAR_SELECTION": "Clear selection",
"SELECT_ALL": "Select all ({count})"
},
"COMPOSE_NEW_CONVERSATION": { "COMPOSE_NEW_CONVERSATION": {
"CONTACT_SEARCH": { "CONTACT_SEARCH": {
"ERROR_MESSAGE": "We couldnt complete the search. Please try again." "ERROR_MESSAGE": "We couldnt complete the search. Please try again."
@@ -863,7 +863,6 @@
}, },
"RESPONSES": { "RESPONSES": {
"HEADER": "FAQs", "HEADER": "FAQs",
"PENDING_FAQS": "Pending FAQs",
"ADD_NEW": "Create new FAQ", "ADD_NEW": "Create new FAQ",
"DOCUMENTABLE": { "DOCUMENTABLE": {
"CONVERSATION": "Conversation #{id}" "CONVERSATION": "Conversation #{id}"
@@ -903,10 +902,6 @@
"APPROVED": "Approved", "APPROVED": "Approved",
"ALL": "Allt" "ALL": "Allt"
}, },
"PENDING_BANNER": {
"TITLE": "Captain has found some FAQs your customers were looking for.",
"ACTION": "Click here to review"
},
"FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.", "FORM_DESCRIPTION": "Add a question and its corresponding answer to the knowledge base and select the assistant it should be associated with.",
"CREATE": { "CREATE": {
"TITLE": "Add an FAQ", "TITLE": "Add an FAQ",
@@ -937,15 +932,13 @@
"APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved" "APPROVE_SUCCESS_MESSAGE": "The FAQ was marked as approved"
}, },
"OPTIONS": { "OPTIONS": {
"APPROVE": "Approve", "APPROVE": "Mark as approved",
"EDIT_RESPONSE": "Breyta", "EDIT_RESPONSE": "Edit FAQ",
"DELETE_RESPONSE": "Eyða" "DELETE_RESPONSE": "Delete FAQ"
}, },
"EMPTY_STATE": { "EMPTY_STATE": {
"TITLE": "No FAQs Found", "TITLE": "No FAQs Found",
"NO_PENDING_TITLE": "There are no more pending FAQs to review",
"SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.", "SUBTITLE": "FAQs help your assistant provide quick and accurate answers to questions from your customers. They can be generated automatically from your content or can be added manually.",
"CLEAR_SEARCH": "Clear active filters",
"FEATURE_SPOTLIGHT": { "FEATURE_SPOTLIGHT": {
"TITLE": "Captain FAQ", "TITLE": "Captain FAQ",
"NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it." "NOTE": "Captain FAQs detects common customer questions—whether missing from your knowledge base or frequently asked—and generates relevant FAQs to improve support. You can review each suggestion and decide whether to approve or reject it."
@@ -147,7 +147,7 @@
"SEND_WEBHOOK_EVENT": "Invia Evento Webhook", "SEND_WEBHOOK_EVENT": "Invia Evento Webhook",
"SEND_ATTACHMENT": "Invia Allegato", "SEND_ATTACHMENT": "Invia Allegato",
"SEND_MESSAGE": "Invia un Messaggio", "SEND_MESSAGE": "Invia un Messaggio",
"ADD_PRIVATE_NOTE": "Aggiungi una Nota Privata", "ADD_PRIVATE_NOTE": "Aggiungi Nota Privata",
"CHANGE_PRIORITY": "Modifica Priorità", "CHANGE_PRIORITY": "Modifica Priorità",
"ADD_SLA": "Aggiungi SLA", "ADD_SLA": "Aggiungi SLA",
"OPEN_CONVERSATION": "Riapri conversazione" "OPEN_CONVERSATION": "Riapri conversazione"

Some files were not shown because too many files have changed in this diff Show More