Merge branch 'develop' into chore/conversation-participants

This commit is contained in:
Sojan Jose 2022-10-19 14:41:22 -07:00 committed by GitHub
commit 6454af41cc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
272 changed files with 1197 additions and 374 deletions

View file

@ -6,6 +6,7 @@ labels: 'Bug'
assignees: '' assignees: ''
--- ---
**Describe the bug** **Describe the bug**
A clear and concise description of what the bug is. A clear and concise description of what the bug is.
@ -16,11 +17,11 @@ Steps to reproduce the behavior:
1. Go to '...' 1. Go to '...'
2. Click on '....' 2. Click on '....'
3. Scroll down to '....' 3. Scroll down to '....'
4. See error 4. See the error
**Expected behavior** **Expected behavior**
A clear and concise description of what you expected to happen. Share a clear and concise description of what you expected to happen.
**Screenshots** **Screenshots**
@ -28,27 +29,50 @@ If applicable, add screenshots to help explain your problem.
**Browser logs** **Browser logs**
Share the browser logs to debug the issue further Share the browser logs to debug the issue further.
**Server logs** **Server logs**
Share the server logs to debug the issue further Share the server logs to debug the issue further.
**Environment** **Environment**
Describe whether you are using Chatwoot Cloud (app.chatwoot.com) or a self hosted installation of Chatwoot. If you are using a self hosted installation of Chatwoot describe the type of deployment (Docker/Linux VM installation/Heroku) Describe whether you are using Chatwoot Cloud (app.chatwoot.com) or a self-hosted installation of Chatwoot. If you are using a self-hosted installation of Chatwoot, describe the type of deployment (Docker/Linux VM installation/Heroku/Kubernetes/Other).
**Desktop (please complete the following information):** - [ ] app.chatwoot.com (Chatwoot Cloud)
- OS: [e.g. iOS] - [ ] Self-hosted
- Browser [e.g. chrome, safari] - - [ ] Linux VM
- - [ ] Docker
- - [ ] Kubernetes
- - [ ] Heroku
- - [ ] Other (Please specify)
**Desktop (please complete the following information)** (If applicable)
- OS: [e.g. Linux, Windows, MacOS]
- Browser [e.g. chrome, firefox, safari]
- Version [e.g. 22] - Version [e.g. 22]
**Smartphone (please complete the following information):** **Smartphone (please complete the following information)** (If applicable)
- Device: [e.g. iPhone6] - Device: [e.g. iPhone6, Pixel7]
- OS: [e.g. iOS8.1] - OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari] - Browser [e.g. stock browser, firefox, safari]
- Version [e.g. 22] - Version [e.g. 22]
**Docker** (If applicable)
Please share the output of the following.
- `docker version`
- `docker info`
- `docker-compose version`
**Cloud Provider** (If applicable)
- [ ] AWS
- [ ] GCP
- [ ] Azure
- [ ] DigitalOcean
- [ ] Others
**Additional context** **Additional context**
Add any other context about the problem here. Add any other context about the problem here.

View file

@ -2,8 +2,7 @@
## Description ## Description
Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. Please include a summary of the change and issue(s) fixed. Also, mention relevant motivation, context, and any dependencies that this change requires.
Fixes # (issue) Fixes # (issue)
## Type of change ## Type of change
@ -12,18 +11,18 @@ Please delete options that are not relevant.
- [ ] Bug fix (non-breaking change which fixes an issue) - [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality) - [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] Breaking change (fix or feature that would cause existing functionality not to work as expected)
- [ ] This change requires a documentation update - [ ] This change requires a documentation update
## How Has This Been Tested? ## How Has This Been Tested?
Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration.
## Checklist: ## Checklist:
- [ ] My code follows the style guidelines of this project - [ ] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my own code - [ ] I have performed a self-review of my code
- [ ] I have commented on my code, particularly in hard-to-understand areas - [ ] I have commented on my code, particularly in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation - [ ] I have made corresponding changes to the documentation
- [ ] My changes generate no new warnings - [ ] My changes generate no new warnings

View file

@ -427,14 +427,14 @@ GEM
netrc (0.11.0) netrc (0.11.0)
newrelic_rpm (8.9.0) newrelic_rpm (8.9.0)
nio4r (2.5.8) nio4r (2.5.8)
nokogiri (1.13.7) nokogiri (1.13.9)
mini_portile2 (~> 2.8.0) mini_portile2 (~> 2.8.0)
racc (~> 1.4) racc (~> 1.4)
nokogiri (1.13.7-arm64-darwin) nokogiri (1.13.9-arm64-darwin)
racc (~> 1.4) racc (~> 1.4)
nokogiri (1.13.7-x86_64-darwin) nokogiri (1.13.9-x86_64-darwin)
racc (~> 1.4) racc (~> 1.4)
nokogiri (1.13.7-x86_64-linux) nokogiri (1.13.9-x86_64-linux)
racc (~> 1.4) racc (~> 1.4)
oauth (0.5.10) oauth (0.5.10)
orm_adapter (0.5.0) orm_adapter (0.5.0)
@ -808,4 +808,4 @@ RUBY VERSION
ruby 3.0.4p208 ruby 3.0.4p208
BUNDLED WITH BUNDLED WITH
2.3.18 2.3.16

View file

@ -72,6 +72,7 @@ class Messages::Instagram::MessageBuilder < Messages::Messenger::MessageBuilder
def build_message def build_message
return if @outgoing_echo && already_sent_from_chatwoot? return if @outgoing_echo && already_sent_from_chatwoot?
return if message_content.blank? && all_unsupported_files?
@message = conversation.messages.create!(message_params) @message = conversation.messages.create!(message_params)
@ -117,6 +118,13 @@ class Messages::Instagram::MessageBuilder < Messages::Messenger::MessageBuilder
cw_message.present? cw_message.present?
end end
def all_unsupported_files?
return if attachments.empty?
attachments_type = attachments.pluck(:type).uniq.first
unsupported_file_type?(attachments_type)
end
### Sample response ### Sample response
# { # {
# "object": "instagram", # "object": "instagram",

View file

@ -2,7 +2,8 @@ class Messages::Messenger::MessageBuilder
include ::FileTypeHelper include ::FileTypeHelper
def process_attachment(attachment) def process_attachment(attachment)
return if attachment['type'].to_sym == :template # This check handles very rare case if there are multiple files to attach with only one usupported file
return if unsupported_file_type?(attachment['type'])
attachment_obj = @message.attachments.new(attachment_params(attachment).except(:remote_file_url)) attachment_obj = @message.attachments.new(attachment_params(attachment).except(:remote_file_url))
attachment_obj.save! attachment_obj.save!
@ -80,4 +81,10 @@ class Messages::Messenger::MessageBuilder
ChatwootExceptionTracker.new(e, account: @inbox.account).capture_exception ChatwootExceptionTracker.new(e, account: @inbox.account).capture_exception
{} {}
end end
private
def unsupported_file_type?(attachment_type)
[:template, :unsupported_type].include? attachment_type.to_sym
end
end end

View file

@ -17,7 +17,8 @@ class Api::V1::Widget::ConversationsController < Api::V1::Widget::BaseController
@contact = ContactIdentifyAction.new( @contact = ContactIdentifyAction.new(
contact: @contact, contact: @contact,
params: { email: contact_email, phone_number: contact_phone_number, name: contact_name }, params: { email: contact_email, phone_number: contact_phone_number, name: contact_name },
retain_original_contact_name: true retain_original_contact_name: true,
discard_invalid_attrs: true
).perform ).perform
end end

View file

@ -17,7 +17,10 @@
@click="snoozeConversation(option.snoozedUntil)" @click="snoozeConversation(option.snoozedUntil)"
/> />
</menu-item-with-submenu> </menu-item-with-submenu>
<menu-item-with-submenu :option="labelMenuConfig"> <menu-item-with-submenu
:option="labelMenuConfig"
:sub-menu-available="!!labels.length"
>
<template> <template>
<menu-item <menu-item
v-for="label in labels" v-for="label in labels"
@ -28,7 +31,10 @@
/> />
</template> </template>
</menu-item-with-submenu> </menu-item-with-submenu>
<menu-item-with-submenu :option="agentMenuConfig"> <menu-item-with-submenu
:option="agentMenuConfig"
:sub-menu-available="!!assignableAgents.length"
>
<agent-loading-placeholder v-if="assignableAgentsUiFlags.isFetching" /> <agent-loading-placeholder v-if="assignableAgentsUiFlags.isFetching" />
<template v-else> <template v-else>
<menu-item <menu-item
@ -40,7 +46,10 @@
/> />
</template> </template>
</menu-item-with-submenu> </menu-item-with-submenu>
<menu-item-with-submenu :option="teamMenuConfig"> <menu-item-with-submenu
:option="teamMenuConfig"
:sub-menu-available="!!teams.length"
>
<menu-item <menu-item
v-for="team in teams" v-for="team in teams"
:key="team.id" :key="team.id"

View file

@ -18,7 +18,7 @@
size="20px" size="20px"
class="agent-thumbnail" class="agent-thumbnail"
/> />
<p class="menu-label truncate-text">{{ option.label }}</p> <p class="menu-label text-truncate">{{ option.label }}</p>
</div> </div>
</template> </template>
@ -50,7 +50,6 @@ export default {
padding: var(--space-smaller); padding: var(--space-smaller);
border-radius: var(--border-radius-small); border-radius: var(--border-radius-small);
overflow: hidden; overflow: hidden;
.menu-label { .menu-label {
margin: 0; margin: 0;
font-size: var(--font-size-mini); font-size: var(--font-size-mini);

View file

@ -1,11 +1,14 @@
<template> <template>
<div class="menu-with-submenu flex-between"> <div
class="menu-with-submenu flex-between"
:class="{ disabled: !subMenuAvailable }"
>
<div class="menu-left"> <div class="menu-left">
<fluent-icon :icon="option.icon" size="14" class="menu-icon" /> <fluent-icon :icon="option.icon" size="14" class="menu-icon" />
<p class="menu-label">{{ option.label }}</p> <p class="menu-label">{{ option.label }}</p>
</div> </div>
<fluent-icon icon="chevron-right" size="12" /> <fluent-icon icon="chevron-right" size="12" />
<div class="submenu"> <div v-if="subMenuAvailable" class="submenu">
<slot /> <slot />
</div> </div>
</div> </div>
@ -18,6 +21,10 @@ export default {
type: Object, type: Object,
default: () => {}, default: () => {},
}, },
subMenuAvailable: {
type: Boolean,
default: true,
},
}, },
}; };
</script> </script>
@ -55,6 +62,11 @@ export default {
left: 100%; left: 100%;
top: 0; top: 0;
display: none; display: none;
min-height: min-content;
max-height: var(--space-giga);
overflow-y: auto;
// Need this because Firefox adds a horizontal scrollbar, if a text is truncated inside.
overflow-x: hidden;
} }
&:hover { &:hover {
@ -73,5 +85,10 @@ export default {
clip-path: polygon(100% 0, 0% 0%, 100% 100%); clip-path: polygon(100% 0, 0% 0%, 100% 100%);
} }
} }
&.disabled {
opacity: 50%;
cursor: not-allowed;
}
} }
</style> </style>

View file

@ -0,0 +1,5 @@
{
"AGENT_BOTS": {
"HEADER": "Bots"
}
}

View file

@ -2,9 +2,11 @@
"BULK_ACTION": { "BULK_ACTION": {
"CONVERSATIONS_SELECTED": "%{conversationCount} المحادثات المحددة", "CONVERSATIONS_SELECTED": "%{conversationCount} المحادثات المحددة",
"AGENT_SELECT_LABEL": "اختر وكيل", "AGENT_SELECT_LABEL": "اختر وكيل",
"ASSIGN_CONFIRMATION_LABEL": "هل أنت متأكد من أنك تريد تعيين %{conversationCount} %{conversationLabel} إلى", "ASSIGN_CONFIRMATION_LABEL": "Are you sure to assign %{conversationCount} %{conversationLabel} to",
"UNASSIGN_CONFIRMATION_LABEL": "Are you sure to unassign %{conversationCount} %{conversationLabel}?",
"GO_BACK_LABEL": "العودة للخلف", "GO_BACK_LABEL": "العودة للخلف",
"ASSIGN_LABEL": "تكليف", "ASSIGN_LABEL": "تكليف",
"YES": "نعم",
"ASSIGN_AGENT_TOOLTIP": "إسناد وكيل", "ASSIGN_AGENT_TOOLTIP": "إسناد وكيل",
"ASSIGN_SUCCESFUL": "تم تعيين المحادثات بنجاح", "ASSIGN_SUCCESFUL": "تم تعيين المحادثات بنجاح",
"ASSIGN_FAILED": "فشل في تعيين المحادثات، الرجاء المحاولة مرة أخرى", "ASSIGN_FAILED": "فشل في تعيين المحادثات، الرجاء المحاولة مرة أخرى",

View file

@ -306,7 +306,7 @@
"PUBLISH_ARTICLE": { "PUBLISH_ARTICLE": {
"API": { "API": {
"ERROR": "حدث خطأ أثناء نشر المقالة", "ERROR": "حدث خطأ أثناء نشر المقالة",
"SUCCESS": "تم نشر المقالة بنجاح" "SUCCESS": "Article published successfully"
} }
}, },
"ARCHIVE_ARTICLE": { "ARCHIVE_ARTICLE": {

View file

@ -239,7 +239,9 @@
}, },
"API_CALLBACK": { "API_CALLBACK": {
"TITLE": "عنوان Callback URL", "TITLE": "عنوان Callback URL",
"SUBTITLE": "يجب عليك تكوين URL webhook في بوابة مطور فيسبوك مع عنوان URL المذكور هنا." "SUBTITLE": "You have to configure the webhook URL and the verification token in the Facebook Developer portal with the values shown below.",
"WEBHOOK_URL": "رابط Webhook",
"WEBHOOK_VERIFICATION_TOKEN": "Webhook Verification Token"
}, },
"SUBMIT_BUTTON": "إنشاء قناة واتساب", "SUBMIT_BUTTON": "إنشاء قناة واتساب",
"API": { "API": {

View file

@ -0,0 +1,5 @@
{
"MACROS": {
"HEADER": "Macros"
}
}

View file

@ -179,6 +179,7 @@
"CONTACTS": "جهات الاتصال", "CONTACTS": "جهات الاتصال",
"HOME": "الرئيسية", "HOME": "الرئيسية",
"AGENTS": "موظف الدعم", "AGENTS": "موظف الدعم",
"AGENT_BOTS": "Bots",
"INBOXES": "قنوات التواصل", "INBOXES": "قنوات التواصل",
"NOTIFICATIONS": "الإشعارات", "NOTIFICATIONS": "الإشعارات",
"CANNED_RESPONSES": "الردود السريعة", "CANNED_RESPONSES": "الردود السريعة",
@ -189,6 +190,7 @@
"LABELS": "الوسوم", "LABELS": "الوسوم",
"CUSTOM_ATTRIBUTES": "سمات مخصصة", "CUSTOM_ATTRIBUTES": "سمات مخصصة",
"AUTOMATION": "الأتمتة", "AUTOMATION": "الأتمتة",
"MACROS": "Macros",
"TEAMS": "الفرق", "TEAMS": "الفرق",
"BILLING": "الفواتير", "BILLING": "الفواتير",
"CUSTOM_VIEWS_FOLDER": "المجلدات", "CUSTOM_VIEWS_FOLDER": "المجلدات",

View file

@ -0,0 +1,5 @@
{
"AGENT_BOTS": {
"HEADER": "Bots"
}
}

View file

@ -2,9 +2,11 @@
"BULK_ACTION": { "BULK_ACTION": {
"CONVERSATIONS_SELECTED": "%{conversationCount} conversations selected", "CONVERSATIONS_SELECTED": "%{conversationCount} conversations selected",
"AGENT_SELECT_LABEL": "Select Agent", "AGENT_SELECT_LABEL": "Select Agent",
"ASSIGN_CONFIRMATION_LABEL": "Are you sure you want to assign %{conversationCount} %{conversationLabel} to", "ASSIGN_CONFIRMATION_LABEL": "Are you sure to assign %{conversationCount} %{conversationLabel} to",
"UNASSIGN_CONFIRMATION_LABEL": "Are you sure to unassign %{conversationCount} %{conversationLabel}?",
"GO_BACK_LABEL": "Go back", "GO_BACK_LABEL": "Go back",
"ASSIGN_LABEL": "Assign", "ASSIGN_LABEL": "Assign",
"YES": "Yes",
"ASSIGN_AGENT_TOOLTIP": "Assign Agent", "ASSIGN_AGENT_TOOLTIP": "Assign Agent",
"ASSIGN_SUCCESFUL": "Conversations assigned successfully", "ASSIGN_SUCCESFUL": "Conversations assigned successfully",
"ASSIGN_FAILED": "Failed to assign conversations, please try again", "ASSIGN_FAILED": "Failed to assign conversations, please try again",

View file

@ -306,7 +306,7 @@
"PUBLISH_ARTICLE": { "PUBLISH_ARTICLE": {
"API": { "API": {
"ERROR": "Error while publishing article", "ERROR": "Error while publishing article",
"SUCCESS": "Article publishied successfully" "SUCCESS": "Article published successfully"
} }
}, },
"ARCHIVE_ARTICLE": { "ARCHIVE_ARTICLE": {

View file

@ -239,7 +239,9 @@
}, },
"API_CALLBACK": { "API_CALLBACK": {
"TITLE": "Callback URL", "TITLE": "Callback URL",
"SUBTITLE": "You have to configure the webhook URL in facebook developer portal with the URL mentioned here." "SUBTITLE": "You have to configure the webhook URL and the verification token in the Facebook Developer portal with the values shown below.",
"WEBHOOK_URL": "Webhook URL",
"WEBHOOK_VERIFICATION_TOKEN": "Webhook Verification Token"
}, },
"SUBMIT_BUTTON": "Create WhatsApp Channel", "SUBMIT_BUTTON": "Create WhatsApp Channel",
"API": { "API": {

View file

@ -0,0 +1,5 @@
{
"MACROS": {
"HEADER": "Macros"
}
}

View file

@ -179,6 +179,7 @@
"CONTACTS": "Контакти", "CONTACTS": "Контакти",
"HOME": "Home", "HOME": "Home",
"AGENTS": "Агенти", "AGENTS": "Агенти",
"AGENT_BOTS": "Bots",
"INBOXES": "Inboxes", "INBOXES": "Inboxes",
"NOTIFICATIONS": "Notifications", "NOTIFICATIONS": "Notifications",
"CANNED_RESPONSES": "Готови отговори", "CANNED_RESPONSES": "Готови отговори",
@ -189,6 +190,7 @@
"LABELS": "Labels", "LABELS": "Labels",
"CUSTOM_ATTRIBUTES": "Персонализирани атрибути", "CUSTOM_ATTRIBUTES": "Персонализирани атрибути",
"AUTOMATION": "Автоматизация", "AUTOMATION": "Автоматизация",
"MACROS": "Macros",
"TEAMS": "Teams", "TEAMS": "Teams",
"BILLING": "Billing", "BILLING": "Billing",
"CUSTOM_VIEWS_FOLDER": "Folders", "CUSTOM_VIEWS_FOLDER": "Folders",

View file

@ -0,0 +1,5 @@
{
"AGENT_BOTS": {
"HEADER": "Bots"
}
}

View file

@ -2,9 +2,11 @@
"BULK_ACTION": { "BULK_ACTION": {
"CONVERSATIONS_SELECTED": "%{conversationCount} conversations selected", "CONVERSATIONS_SELECTED": "%{conversationCount} conversations selected",
"AGENT_SELECT_LABEL": "Seleccionar Agent", "AGENT_SELECT_LABEL": "Seleccionar Agent",
"ASSIGN_CONFIRMATION_LABEL": "Are you sure you want to assign %{conversationCount} %{conversationLabel} to", "ASSIGN_CONFIRMATION_LABEL": "Are you sure to assign %{conversationCount} %{conversationLabel} to",
"UNASSIGN_CONFIRMATION_LABEL": "Are you sure to unassign %{conversationCount} %{conversationLabel}?",
"GO_BACK_LABEL": "Go back", "GO_BACK_LABEL": "Go back",
"ASSIGN_LABEL": "Assignar", "ASSIGN_LABEL": "Assignar",
"YES": "Si",
"ASSIGN_AGENT_TOOLTIP": "Assign Agent", "ASSIGN_AGENT_TOOLTIP": "Assign Agent",
"ASSIGN_SUCCESFUL": "Conversations assigned successfully", "ASSIGN_SUCCESFUL": "Conversations assigned successfully",
"ASSIGN_FAILED": "Failed to assign conversations, please try again", "ASSIGN_FAILED": "Failed to assign conversations, please try again",

View file

@ -306,7 +306,7 @@
"PUBLISH_ARTICLE": { "PUBLISH_ARTICLE": {
"API": { "API": {
"ERROR": "Error while publishing article", "ERROR": "Error while publishing article",
"SUCCESS": "Article publishied successfully" "SUCCESS": "Article published successfully"
} }
}, },
"ARCHIVE_ARTICLE": { "ARCHIVE_ARTICLE": {

View file

@ -239,7 +239,9 @@
}, },
"API_CALLBACK": { "API_CALLBACK": {
"TITLE": "Callback URL", "TITLE": "Callback URL",
"SUBTITLE": "You have to configure the webhook URL in facebook developer portal with the URL mentioned here." "SUBTITLE": "You have to configure the webhook URL and the verification token in the Facebook Developer portal with the values shown below.",
"WEBHOOK_URL": "URL del webhook",
"WEBHOOK_VERIFICATION_TOKEN": "Webhook Verification Token"
}, },
"SUBMIT_BUTTON": "Create WhatsApp Channel", "SUBMIT_BUTTON": "Create WhatsApp Channel",
"API": { "API": {

View file

@ -0,0 +1,5 @@
{
"MACROS": {
"HEADER": "Macros"
}
}

View file

@ -179,6 +179,7 @@
"CONTACTS": "Contactes", "CONTACTS": "Contactes",
"HOME": "Inici", "HOME": "Inici",
"AGENTS": "Agents", "AGENTS": "Agents",
"AGENT_BOTS": "Bots",
"INBOXES": "Safates d'entrada", "INBOXES": "Safates d'entrada",
"NOTIFICATIONS": "Notificacions", "NOTIFICATIONS": "Notificacions",
"CANNED_RESPONSES": "Respostes predeterminades", "CANNED_RESPONSES": "Respostes predeterminades",
@ -189,6 +190,7 @@
"LABELS": "Etiquetes", "LABELS": "Etiquetes",
"CUSTOM_ATTRIBUTES": "Atributs personalitzats", "CUSTOM_ATTRIBUTES": "Atributs personalitzats",
"AUTOMATION": "Automation", "AUTOMATION": "Automation",
"MACROS": "Macros",
"TEAMS": "Equips", "TEAMS": "Equips",
"BILLING": "Billing", "BILLING": "Billing",
"CUSTOM_VIEWS_FOLDER": "Folders", "CUSTOM_VIEWS_FOLDER": "Folders",

View file

@ -0,0 +1,5 @@
{
"AGENT_BOTS": {
"HEADER": "Bots"
}
}

View file

@ -2,9 +2,11 @@
"BULK_ACTION": { "BULK_ACTION": {
"CONVERSATIONS_SELECTED": "%{conversationCount} conversations selected", "CONVERSATIONS_SELECTED": "%{conversationCount} conversations selected",
"AGENT_SELECT_LABEL": "Vybrat agenta", "AGENT_SELECT_LABEL": "Vybrat agenta",
"ASSIGN_CONFIRMATION_LABEL": "Are you sure you want to assign %{conversationCount} %{conversationLabel} to", "ASSIGN_CONFIRMATION_LABEL": "Are you sure to assign %{conversationCount} %{conversationLabel} to",
"UNASSIGN_CONFIRMATION_LABEL": "Are you sure to unassign %{conversationCount} %{conversationLabel}?",
"GO_BACK_LABEL": "Go back", "GO_BACK_LABEL": "Go back",
"ASSIGN_LABEL": "Přiřadit", "ASSIGN_LABEL": "Přiřadit",
"YES": "Ano",
"ASSIGN_AGENT_TOOLTIP": "Assign Agent", "ASSIGN_AGENT_TOOLTIP": "Assign Agent",
"ASSIGN_SUCCESFUL": "Conversations assigned successfully", "ASSIGN_SUCCESFUL": "Conversations assigned successfully",
"ASSIGN_FAILED": "Failed to assign conversations, please try again", "ASSIGN_FAILED": "Failed to assign conversations, please try again",

View file

@ -306,7 +306,7 @@
"PUBLISH_ARTICLE": { "PUBLISH_ARTICLE": {
"API": { "API": {
"ERROR": "Error while publishing article", "ERROR": "Error while publishing article",
"SUCCESS": "Article publishied successfully" "SUCCESS": "Article published successfully"
} }
}, },
"ARCHIVE_ARTICLE": { "ARCHIVE_ARTICLE": {

View file

@ -239,7 +239,9 @@
}, },
"API_CALLBACK": { "API_CALLBACK": {
"TITLE": "Callback URL", "TITLE": "Callback URL",
"SUBTITLE": "You have to configure the webhook URL in facebook developer portal with the URL mentioned here." "SUBTITLE": "You have to configure the webhook URL and the verification token in the Facebook Developer portal with the values shown below.",
"WEBHOOK_URL": "URL webového háčku",
"WEBHOOK_VERIFICATION_TOKEN": "Webhook Verification Token"
}, },
"SUBMIT_BUTTON": "Create WhatsApp Channel", "SUBMIT_BUTTON": "Create WhatsApp Channel",
"API": { "API": {
@ -357,7 +359,7 @@
}, },
"FINISH": { "FINISH": {
"TITLE": "Vaše doručená pošta je připravena!", "TITLE": "Vaše doručená pošta je připravena!",
"MESSAGE": "Nyní se můžete spojit se svými zákazníky prostřednictvím nového kanálu. Šťastná podpora ", "MESSAGE": "You can now engage with your customers through your new Channel. Happy supporting",
"BUTTON_TEXT": "Vezmi mě tam", "BUTTON_TEXT": "Vezmi mě tam",
"MORE_SETTINGS": "More settings", "MORE_SETTINGS": "More settings",
"WEBSITE_SUCCESS": "Úspěšně jste dokončili vytvoření webového kanálu. Zkopírujte kód zobrazený níže a vložte jej na vaše webové stránky. Když zákazník příště použije živý chat, konverzace se automaticky objeví ve vaší doručené poště." "WEBSITE_SUCCESS": "Úspěšně jste dokončili vytvoření webového kanálu. Zkopírujte kód zobrazený níže a vložte jej na vaše webové stránky. Když zákazník příště použije živý chat, konverzace se automaticky objeví ve vaší doručené poště."

View file

@ -0,0 +1,5 @@
{
"MACROS": {
"HEADER": "Macros"
}
}

View file

@ -179,6 +179,7 @@
"CONTACTS": "Kontakty", "CONTACTS": "Kontakty",
"HOME": "Domů", "HOME": "Domů",
"AGENTS": "Agenti", "AGENTS": "Agenti",
"AGENT_BOTS": "Bots",
"INBOXES": "Schránky", "INBOXES": "Schránky",
"NOTIFICATIONS": "Oznámení", "NOTIFICATIONS": "Oznámení",
"CANNED_RESPONSES": "Konzervované odpovědi", "CANNED_RESPONSES": "Konzervované odpovědi",
@ -189,6 +190,7 @@
"LABELS": "Štítky", "LABELS": "Štítky",
"CUSTOM_ATTRIBUTES": "Vlastní atributy", "CUSTOM_ATTRIBUTES": "Vlastní atributy",
"AUTOMATION": "Automation", "AUTOMATION": "Automation",
"MACROS": "Macros",
"TEAMS": "Týmy", "TEAMS": "Týmy",
"BILLING": "Billing", "BILLING": "Billing",
"CUSTOM_VIEWS_FOLDER": "Folders", "CUSTOM_VIEWS_FOLDER": "Folders",

View file

@ -0,0 +1,5 @@
{
"AGENT_BOTS": {
"HEADER": "Bots"
}
}

View file

@ -2,9 +2,11 @@
"BULK_ACTION": { "BULK_ACTION": {
"CONVERSATIONS_SELECTED": "%{conversationCount} samtaler valgt", "CONVERSATIONS_SELECTED": "%{conversationCount} samtaler valgt",
"AGENT_SELECT_LABEL": "Vælg Agent", "AGENT_SELECT_LABEL": "Vælg Agent",
"ASSIGN_CONFIRMATION_LABEL": "Er du sikker på, at du vil tildele %{conversationCount} %{conversationLabel} til", "ASSIGN_CONFIRMATION_LABEL": "Are you sure to assign %{conversationCount} %{conversationLabel} to",
"UNASSIGN_CONFIRMATION_LABEL": "Are you sure to unassign %{conversationCount} %{conversationLabel}?",
"GO_BACK_LABEL": "Gå tilbage", "GO_BACK_LABEL": "Gå tilbage",
"ASSIGN_LABEL": "Tildel", "ASSIGN_LABEL": "Tildel",
"YES": "Ja",
"ASSIGN_AGENT_TOOLTIP": "Tildel Agent", "ASSIGN_AGENT_TOOLTIP": "Tildel Agent",
"ASSIGN_SUCCESFUL": "Samtaler tildelt", "ASSIGN_SUCCESFUL": "Samtaler tildelt",
"ASSIGN_FAILED": "Mislykkedes at tildele samtaler, prøv igen", "ASSIGN_FAILED": "Mislykkedes at tildele samtaler, prøv igen",

View file

@ -306,7 +306,7 @@
"PUBLISH_ARTICLE": { "PUBLISH_ARTICLE": {
"API": { "API": {
"ERROR": "Fejl under publicering af artikel", "ERROR": "Fejl under publicering af artikel",
"SUCCESS": "Artikel publiceret med succes" "SUCCESS": "Article published successfully"
} }
}, },
"ARCHIVE_ARTICLE": { "ARCHIVE_ARTICLE": {

View file

@ -239,7 +239,9 @@
}, },
"API_CALLBACK": { "API_CALLBACK": {
"TITLE": "Callback URL", "TITLE": "Callback URL",
"SUBTITLE": "Du skal konfigurere webhook URL i facebook udvikler portal med den URL, der er nævnt her." "SUBTITLE": "You have to configure the webhook URL and the verification token in the Facebook Developer portal with the values shown below.",
"WEBHOOK_URL": "Webhook URL",
"WEBHOOK_VERIFICATION_TOKEN": "Webhook Verification Token"
}, },
"SUBMIT_BUTTON": "Opret WhatsApp Kanal", "SUBMIT_BUTTON": "Opret WhatsApp Kanal",
"API": { "API": {

View file

@ -0,0 +1,5 @@
{
"MACROS": {
"HEADER": "Macros"
}
}

View file

@ -179,6 +179,7 @@
"CONTACTS": "Kontakter", "CONTACTS": "Kontakter",
"HOME": "Hjem", "HOME": "Hjem",
"AGENTS": "Agenter", "AGENTS": "Agenter",
"AGENT_BOTS": "Bots",
"INBOXES": "Indbakker", "INBOXES": "Indbakker",
"NOTIFICATIONS": "Notifikationer", "NOTIFICATIONS": "Notifikationer",
"CANNED_RESPONSES": "Standardsvar Svar", "CANNED_RESPONSES": "Standardsvar Svar",
@ -189,6 +190,7 @@
"LABELS": "Etiketter", "LABELS": "Etiketter",
"CUSTOM_ATTRIBUTES": "Brugerdefinerede Egenskaber", "CUSTOM_ATTRIBUTES": "Brugerdefinerede Egenskaber",
"AUTOMATION": "Automatisering", "AUTOMATION": "Automatisering",
"MACROS": "Macros",
"TEAMS": "Teams", "TEAMS": "Teams",
"BILLING": "Fakturering", "BILLING": "Fakturering",
"CUSTOM_VIEWS_FOLDER": "Mapper", "CUSTOM_VIEWS_FOLDER": "Mapper",

View file

@ -0,0 +1,5 @@
{
"AGENT_BOTS": {
"HEADER": "Bots"
}
}

View file

@ -2,9 +2,11 @@
"BULK_ACTION": { "BULK_ACTION": {
"CONVERSATIONS_SELECTED": "%{conversationCount} Konversationen ausgewählt", "CONVERSATIONS_SELECTED": "%{conversationCount} Konversationen ausgewählt",
"AGENT_SELECT_LABEL": "Agent auswählen", "AGENT_SELECT_LABEL": "Agent auswählen",
"ASSIGN_CONFIRMATION_LABEL": "Sind Sie sicher, dass Sie %{conversationCount} %{conversationLabel} zuweisen möchten", "ASSIGN_CONFIRMATION_LABEL": "Sind Sie sicher, %{conversationCount} %{conversationLabel} zuzuweisen",
"UNASSIGN_CONFIRMATION_LABEL": "Möchten Sie die Zuweisung von %{conversationCount} %{conversationLabel} wirklich aufheben?",
"GO_BACK_LABEL": "Zurück", "GO_BACK_LABEL": "Zurück",
"ASSIGN_LABEL": "Zuordnen", "ASSIGN_LABEL": "Zuordnen",
"YES": "Ja",
"ASSIGN_AGENT_TOOLTIP": "Agent zuweisen", "ASSIGN_AGENT_TOOLTIP": "Agent zuweisen",
"ASSIGN_SUCCESFUL": "Konversationen erfolgreich zugewiesen", "ASSIGN_SUCCESFUL": "Konversationen erfolgreich zugewiesen",
"ASSIGN_FAILED": "Konversationen konnten nicht zugewiesen werden. Bitte versuchen Sie es erneut", "ASSIGN_FAILED": "Konversationen konnten nicht zugewiesen werden. Bitte versuchen Sie es erneut",

View file

@ -239,7 +239,9 @@
}, },
"API_CALLBACK": { "API_CALLBACK": {
"TITLE": "Callback URL", "TITLE": "Callback URL",
"SUBTITLE": "Sie müssen die Webhook-URL im Facebook-Entwicklerportal mit der hier genannten URL konfigurieren." "SUBTITLE": "Sie müssen die Webhook-URL und das Verifizierungstoken im Facebook-Entwicklerportal mit den unten gezeigten Werten konfigurieren.",
"WEBHOOK_URL": "Webhook-URL",
"WEBHOOK_VERIFICATION_TOKEN": "Webhook-Verifizierungstoken"
}, },
"SUBMIT_BUTTON": "WhatsApp-Kanal erstellen", "SUBMIT_BUTTON": "WhatsApp-Kanal erstellen",
"API": { "API": {
@ -357,7 +359,7 @@
}, },
"FINISH": { "FINISH": {
"TITLE": "Ihr Posteingang ist fertig!", "TITLE": "Ihr Posteingang ist fertig!",
"MESSAGE": "Sie können jetzt über Ihren neuen Kanal mit Ihren Kunden in Kontakt treten. Viel Spaß beim Unterstützen", "MESSAGE": "Sie können jetzt über Ihren neuen Kanal mit Ihren Kunden in Kontakt treten. Fröhliches Unterstützen",
"BUTTON_TEXT": "Bring mich dahin", "BUTTON_TEXT": "Bring mich dahin",
"MORE_SETTINGS": "Weitere Einstellungen", "MORE_SETTINGS": "Weitere Einstellungen",
"WEBSITE_SUCCESS": "Sie haben die Erstellung eines Website-Kanals erfolgreich abgeschlossen. Kopieren Sie den unten gezeigten Code und fügen Sie ihn in Ihre Website ein. Wenn ein Kunde das nächste Mal den Live-Chat verwendet, wird die Konversation automatisch in Ihrem Posteingang angezeigt." "WEBSITE_SUCCESS": "Sie haben die Erstellung eines Website-Kanals erfolgreich abgeschlossen. Kopieren Sie den unten gezeigten Code und fügen Sie ihn in Ihre Website ein. Wenn ein Kunde das nächste Mal den Live-Chat verwendet, wird die Konversation automatisch in Ihrem Posteingang angezeigt."

View file

@ -0,0 +1,5 @@
{
"MACROS": {
"HEADER": "Makros"
}
}

View file

@ -179,6 +179,7 @@
"CONTACTS": "Kontakte", "CONTACTS": "Kontakte",
"HOME": "Hauptseite", "HOME": "Hauptseite",
"AGENTS": "Agenten", "AGENTS": "Agenten",
"AGENT_BOTS": "Bots",
"INBOXES": "Posteingänge", "INBOXES": "Posteingänge",
"NOTIFICATIONS": "Push-Benachrichtigungen", "NOTIFICATIONS": "Push-Benachrichtigungen",
"CANNED_RESPONSES": "Vorgefertigte Antworten", "CANNED_RESPONSES": "Vorgefertigte Antworten",
@ -189,6 +190,7 @@
"LABELS": "Labels", "LABELS": "Labels",
"CUSTOM_ATTRIBUTES": "Benutzerdefinierte Attribute", "CUSTOM_ATTRIBUTES": "Benutzerdefinierte Attribute",
"AUTOMATION": "Automatisierung", "AUTOMATION": "Automatisierung",
"MACROS": "Makros",
"TEAMS": "Teams", "TEAMS": "Teams",
"BILLING": "Rechnungen", "BILLING": "Rechnungen",
"CUSTOM_VIEWS_FOLDER": "Ordner", "CUSTOM_VIEWS_FOLDER": "Ordner",

View file

@ -0,0 +1,5 @@
{
"AGENT_BOTS": {
"HEADER": "Bots"
}
}

View file

@ -3,8 +3,10 @@
"CONVERSATIONS_SELECTED": "%{conversationCount} conversaciones seleccionadas", "CONVERSATIONS_SELECTED": "%{conversationCount} conversaciones seleccionadas",
"AGENT_SELECT_LABEL": "Seleccionar agente", "AGENT_SELECT_LABEL": "Seleccionar agente",
"ASSIGN_CONFIRMATION_LABEL": "¿Está seguro que desea asignar %{conversationCount} %{conversationLabel} a", "ASSIGN_CONFIRMATION_LABEL": "¿Está seguro que desea asignar %{conversationCount} %{conversationLabel} a",
"UNASSIGN_CONFIRMATION_LABEL": "¿Está seguro de desasignar %{conversationCount} %{conversationLabel}?",
"GO_BACK_LABEL": "Volver", "GO_BACK_LABEL": "Volver",
"ASSIGN_LABEL": "Asignar", "ASSIGN_LABEL": "Asignar",
"YES": "Si",
"ASSIGN_AGENT_TOOLTIP": "Asignar agente", "ASSIGN_AGENT_TOOLTIP": "Asignar agente",
"ASSIGN_SUCCESFUL": "Conversaciones asignadas con éxito", "ASSIGN_SUCCESFUL": "Conversaciones asignadas con éxito",
"ASSIGN_FAILED": "Error al asignar conversaciones, inténtelo de nuevo", "ASSIGN_FAILED": "Error al asignar conversaciones, inténtelo de nuevo",

View file

@ -59,19 +59,19 @@
} }
}, },
"BUTTONS": { "BUTTONS": {
"ARCHIVE": "Archive article", "ARCHIVE": "Archivar artículo",
"DELETE": "Delete article" "DELETE": "Eliminar artículo"
} }
}, },
"PORTAL": { "PORTAL": {
"HEADER": "Portals", "HEADER": "Portales",
"DEFAULT": "Default", "DEFAULT": "Predeterminado",
"NEW_BUTTON": "New Portal", "NEW_BUTTON": "Nuevo Portal",
"ACTIVE_BADGE": "activo", "ACTIVE_BADGE": "activo",
"CHOOSE_LOCALE_LABEL": "Choose a locale", "CHOOSE_LOCALE_LABEL": "Elige un idioma",
"LOADING_MESSAGE": "Loading portals...", "LOADING_MESSAGE": "Cargando portales...",
"ARTICLES_LABEL": "articles", "ARTICLES_LABEL": "artículos",
"NO_PORTALS_MESSAGE": "There are no available portals", "NO_PORTALS_MESSAGE": "No hay portales disponibles",
"ADD_NEW_LOCALE": "Add a new locale", "ADD_NEW_LOCALE": "Add a new locale",
"POPOVER": { "POPOVER": {
"TITLE": "Portals", "TITLE": "Portals",
@ -83,7 +83,7 @@
"PORTAL_SETTINGS": { "PORTAL_SETTINGS": {
"LIST_ITEM": { "LIST_ITEM": {
"HEADER": { "HEADER": {
"COUNT_LABEL": "articles", "COUNT_LABEL": "artículos",
"ADD": "Add locale", "ADD": "Add locale",
"VISIT": "Visit site", "VISIT": "Visit site",
"SETTINGS": "Ajustes", "SETTINGS": "Ajustes",
@ -255,7 +255,7 @@
"PORTAL": "Portal", "PORTAL": "Portal",
"LOCALE": { "LOCALE": {
"LABEL": "Locale", "LABEL": "Locale",
"PLACEHOLDER": "Choose a locale", "PLACEHOLDER": "Elige un idioma",
"ERROR": "Locale is required" "ERROR": "Locale is required"
}, },
"BUTTONS": { "BUTTONS": {
@ -306,7 +306,7 @@
"PUBLISH_ARTICLE": { "PUBLISH_ARTICLE": {
"API": { "API": {
"ERROR": "Error while publishing article", "ERROR": "Error while publishing article",
"SUCCESS": "Article publishied successfully" "SUCCESS": "Article published successfully"
} }
}, },
"ARCHIVE_ARTICLE": { "ARCHIVE_ARTICLE": {

View file

@ -239,7 +239,9 @@
}, },
"API_CALLBACK": { "API_CALLBACK": {
"TITLE": "URL de devolución de llamada", "TITLE": "URL de devolución de llamada",
"SUBTITLE": "You have to configure the webhook URL in facebook developer portal with the URL mentioned here." "SUBTITLE": "You have to configure the webhook URL and the verification token in the Facebook Developer portal with the values shown below.",
"WEBHOOK_URL": "URL de Webhook",
"WEBHOOK_VERIFICATION_TOKEN": "Webhook Verification Token"
}, },
"SUBMIT_BUTTON": "Crear canal de WhatsApp", "SUBMIT_BUTTON": "Crear canal de WhatsApp",
"API": { "API": {

View file

@ -0,0 +1,5 @@
{
"MACROS": {
"HEADER": "Macros"
}
}

View file

@ -179,6 +179,7 @@
"CONTACTS": "Contactos", "CONTACTS": "Contactos",
"HOME": "Inicio", "HOME": "Inicio",
"AGENTS": "Agentes", "AGENTS": "Agentes",
"AGENT_BOTS": "Bots",
"INBOXES": "Entradas", "INBOXES": "Entradas",
"NOTIFICATIONS": "Notificaciones", "NOTIFICATIONS": "Notificaciones",
"CANNED_RESPONSES": "Respuestas predefinidas", "CANNED_RESPONSES": "Respuestas predefinidas",
@ -189,6 +190,7 @@
"LABELS": "Etiquetas", "LABELS": "Etiquetas",
"CUSTOM_ATTRIBUTES": "Atributos personalizados", "CUSTOM_ATTRIBUTES": "Atributos personalizados",
"AUTOMATION": "Automatización", "AUTOMATION": "Automatización",
"MACROS": "Macros",
"TEAMS": "Equipos", "TEAMS": "Equipos",
"BILLING": "Facturación", "BILLING": "Facturación",
"CUSTOM_VIEWS_FOLDER": "Carpetas", "CUSTOM_VIEWS_FOLDER": "Carpetas",

View file

@ -0,0 +1,5 @@
{
"AGENT_BOTS": {
"HEADER": "ربات‌ها"
}
}

View file

@ -2,9 +2,11 @@
"BULK_ACTION": { "BULK_ACTION": {
"CONVERSATIONS_SELECTED": "%{conversationCount} گفتگو انتخاب شده است", "CONVERSATIONS_SELECTED": "%{conversationCount} گفتگو انتخاب شده است",
"AGENT_SELECT_LABEL": "انتخاب ایجنت", "AGENT_SELECT_LABEL": "انتخاب ایجنت",
"ASSIGN_CONFIRMATION_LABEL": "آیا مطمئن هستید که می‌خواهید %{conversationCount} %{conversationLabel} را به آن اختصاص دهید؟", "ASSIGN_CONFIRMATION_LABEL": "آیا مطمئن هستید که به %{conversationCount} %{conversationLabel} اختصاص می‌دهید",
"UNASSIGN_CONFIRMATION_LABEL": "آیا مطمئنید که %{conversationCount} %{conversationLabel} را می‌خواهید اختصاص را لغو کنید؟",
"GO_BACK_LABEL": "بازگشت", "GO_BACK_LABEL": "بازگشت",
"ASSIGN_LABEL": "اختصاص دادن", "ASSIGN_LABEL": "اختصاص دادن",
"YES": "بله",
"ASSIGN_AGENT_TOOLTIP": "تعیین ایجنت", "ASSIGN_AGENT_TOOLTIP": "تعیین ایجنت",
"ASSIGN_SUCCESFUL": "گفتگو با موفقیت اختصاص داده شده", "ASSIGN_SUCCESFUL": "گفتگو با موفقیت اختصاص داده شده",
"ASSIGN_FAILED": "گفتگو اختصاص داده نشد، لطفا دوباره امتحان کنید", "ASSIGN_FAILED": "گفتگو اختصاص داده نشد، لطفا دوباره امتحان کنید",

View file

@ -239,7 +239,9 @@
}, },
"API_CALLBACK": { "API_CALLBACK": {
"TITLE": "آدرس URL مربوط به API", "TITLE": "آدرس URL مربوط به API",
"SUBTITLE": "شما باید URL webhook را در پورتال توسعه دهنده فیس بوک با URL ذکر شده در اینجا پیکربندی کنید." "SUBTITLE": "شما باید URL webhook و رمز تأیید را در پورتال توسعه دهنده فیس بوک با مقادیر نشان داده شده در زیر پیکربندی کنید.",
"WEBHOOK_URL": "آدرس URL وب هوک",
"WEBHOOK_VERIFICATION_TOKEN": "توکن تایید Webhook"
}, },
"SUBMIT_BUTTON": "ایجاد کانال واتساپ", "SUBMIT_BUTTON": "ایجاد کانال واتساپ",
"API": { "API": {

View file

@ -0,0 +1,5 @@
{
"MACROS": {
"HEADER": "ماکروها"
}
}

View file

@ -179,6 +179,7 @@
"CONTACTS": "مخاطبین", "CONTACTS": "مخاطبین",
"HOME": "صفحه اصلی", "HOME": "صفحه اصلی",
"AGENTS": "ایجنت ها", "AGENTS": "ایجنت ها",
"AGENT_BOTS": "ربات‌ها",
"INBOXES": "صندوق‌های ورودی", "INBOXES": "صندوق‌های ورودی",
"NOTIFICATIONS": "اعلان ها", "NOTIFICATIONS": "اعلان ها",
"CANNED_RESPONSES": "پاسخ‌های آماده", "CANNED_RESPONSES": "پاسخ‌های آماده",
@ -189,6 +190,7 @@
"LABELS": "برچسب‌ها", "LABELS": "برچسب‌ها",
"CUSTOM_ATTRIBUTES": "ویژگی‌های سفارشی", "CUSTOM_ATTRIBUTES": "ویژگی‌های سفارشی",
"AUTOMATION": "خودکارسازی", "AUTOMATION": "خودکارسازی",
"MACROS": "ماکروها",
"TEAMS": "تیم‌ها", "TEAMS": "تیم‌ها",
"BILLING": "صورتحساب", "BILLING": "صورتحساب",
"CUSTOM_VIEWS_FOLDER": "پوشه‌ها", "CUSTOM_VIEWS_FOLDER": "پوشه‌ها",

View file

@ -0,0 +1,5 @@
{
"AGENT_BOTS": {
"HEADER": "Bots"
}
}

View file

@ -2,9 +2,11 @@
"BULK_ACTION": { "BULK_ACTION": {
"CONVERSATIONS_SELECTED": "%{conversationCount} conversations selected", "CONVERSATIONS_SELECTED": "%{conversationCount} conversations selected",
"AGENT_SELECT_LABEL": "Valitse edustaja", "AGENT_SELECT_LABEL": "Valitse edustaja",
"ASSIGN_CONFIRMATION_LABEL": "Are you sure you want to assign %{conversationCount} %{conversationLabel} to", "ASSIGN_CONFIRMATION_LABEL": "Are you sure to assign %{conversationCount} %{conversationLabel} to",
"UNASSIGN_CONFIRMATION_LABEL": "Are you sure to unassign %{conversationCount} %{conversationLabel}?",
"GO_BACK_LABEL": "Mene takaisin", "GO_BACK_LABEL": "Mene takaisin",
"ASSIGN_LABEL": "Delegoi", "ASSIGN_LABEL": "Delegoi",
"YES": "Yes",
"ASSIGN_AGENT_TOOLTIP": "Assign Agent", "ASSIGN_AGENT_TOOLTIP": "Assign Agent",
"ASSIGN_SUCCESFUL": "Conversations assigned successfully", "ASSIGN_SUCCESFUL": "Conversations assigned successfully",
"ASSIGN_FAILED": "Failed to assign conversations, please try again", "ASSIGN_FAILED": "Failed to assign conversations, please try again",

View file

@ -306,7 +306,7 @@
"PUBLISH_ARTICLE": { "PUBLISH_ARTICLE": {
"API": { "API": {
"ERROR": "Error while publishing article", "ERROR": "Error while publishing article",
"SUCCESS": "Article publishied successfully" "SUCCESS": "Article published successfully"
} }
}, },
"ARCHIVE_ARTICLE": { "ARCHIVE_ARTICLE": {

View file

@ -239,7 +239,9 @@
}, },
"API_CALLBACK": { "API_CALLBACK": {
"TITLE": "Callback URL", "TITLE": "Callback URL",
"SUBTITLE": "You have to configure the webhook URL in facebook developer portal with the URL mentioned here." "SUBTITLE": "You have to configure the webhook URL and the verification token in the Facebook Developer portal with the values shown below.",
"WEBHOOK_URL": "Webhookin URL",
"WEBHOOK_VERIFICATION_TOKEN": "Webhook Verification Token"
}, },
"SUBMIT_BUTTON": "Create WhatsApp Channel", "SUBMIT_BUTTON": "Create WhatsApp Channel",
"API": { "API": {
@ -357,7 +359,7 @@
}, },
"FINISH": { "FINISH": {
"TITLE": "Postilaatikkosi on valmis!", "TITLE": "Postilaatikkosi on valmis!",
"MESSAGE": "Voit nyt sitoutua asiakkaisiisi uuden kanavan kautta. Hyvää asiakaspalveluhenkeä! ", "MESSAGE": "You can now engage with your customers through your new Channel. Happy supporting",
"BUTTON_TEXT": "Vie minut sinne", "BUTTON_TEXT": "Vie minut sinne",
"MORE_SETTINGS": "More settings", "MORE_SETTINGS": "More settings",
"WEBSITE_SUCCESS": "Olet onnistuneesti lisännyt sivuston chat-widgetin. Kopioi alla näkyvä koodi ja liitä se verkkosivuillesi. Seuraavalla kerralla kun asiakas käyttää live-keskustelua, keskustelu ilmestyy automaattisesti saapuneet-kansioon." "WEBSITE_SUCCESS": "Olet onnistuneesti lisännyt sivuston chat-widgetin. Kopioi alla näkyvä koodi ja liitä se verkkosivuillesi. Seuraavalla kerralla kun asiakas käyttää live-keskustelua, keskustelu ilmestyy automaattisesti saapuneet-kansioon."

View file

@ -0,0 +1,5 @@
{
"MACROS": {
"HEADER": "Macros"
}
}

View file

@ -179,6 +179,7 @@
"CONTACTS": "Yhteystiedot", "CONTACTS": "Yhteystiedot",
"HOME": "Koti", "HOME": "Koti",
"AGENTS": "Edustajat", "AGENTS": "Edustajat",
"AGENT_BOTS": "Bots",
"INBOXES": "Kansiot", "INBOXES": "Kansiot",
"NOTIFICATIONS": "Ilmoitukset", "NOTIFICATIONS": "Ilmoitukset",
"CANNED_RESPONSES": "Tallennetut vastaukset", "CANNED_RESPONSES": "Tallennetut vastaukset",
@ -189,6 +190,7 @@
"LABELS": "Tunnisteet", "LABELS": "Tunnisteet",
"CUSTOM_ATTRIBUTES": "Mukautetut attribuutit", "CUSTOM_ATTRIBUTES": "Mukautetut attribuutit",
"AUTOMATION": "Automation", "AUTOMATION": "Automation",
"MACROS": "Macros",
"TEAMS": "Teams", "TEAMS": "Teams",
"BILLING": "Billing", "BILLING": "Billing",
"CUSTOM_VIEWS_FOLDER": "Folders", "CUSTOM_VIEWS_FOLDER": "Folders",

View file

@ -0,0 +1,5 @@
{
"AGENT_BOTS": {
"HEADER": "Bots"
}
}

View file

@ -2,9 +2,11 @@
"BULK_ACTION": { "BULK_ACTION": {
"CONVERSATIONS_SELECTED": "%{conversationCount} conversations selected", "CONVERSATIONS_SELECTED": "%{conversationCount} conversations selected",
"AGENT_SELECT_LABEL": "Sélectionner un agent", "AGENT_SELECT_LABEL": "Sélectionner un agent",
"ASSIGN_CONFIRMATION_LABEL": "Are you sure you want to assign %{conversationCount} %{conversationLabel} to", "ASSIGN_CONFIRMATION_LABEL": "Are you sure to assign %{conversationCount} %{conversationLabel} to",
"UNASSIGN_CONFIRMATION_LABEL": "Are you sure to unassign %{conversationCount} %{conversationLabel}?",
"GO_BACK_LABEL": "Go back", "GO_BACK_LABEL": "Go back",
"ASSIGN_LABEL": "Assigner", "ASSIGN_LABEL": "Assigner",
"YES": "Oui",
"ASSIGN_AGENT_TOOLTIP": "Assign Agent", "ASSIGN_AGENT_TOOLTIP": "Assign Agent",
"ASSIGN_SUCCESFUL": "Conversations assigned successfully", "ASSIGN_SUCCESFUL": "Conversations assigned successfully",
"ASSIGN_FAILED": "Failed to assign conversations, please try again", "ASSIGN_FAILED": "Failed to assign conversations, please try again",

View file

@ -306,7 +306,7 @@
"PUBLISH_ARTICLE": { "PUBLISH_ARTICLE": {
"API": { "API": {
"ERROR": "Error while publishing article", "ERROR": "Error while publishing article",
"SUCCESS": "Article publishied successfully" "SUCCESS": "Article published successfully"
} }
}, },
"ARCHIVE_ARTICLE": { "ARCHIVE_ARTICLE": {

View file

@ -239,7 +239,9 @@
}, },
"API_CALLBACK": { "API_CALLBACK": {
"TITLE": "URL de rappel (callback)", "TITLE": "URL de rappel (callback)",
"SUBTITLE": "You have to configure the webhook URL in facebook developer portal with the URL mentioned here." "SUBTITLE": "You have to configure the webhook URL and the verification token in the Facebook Developer portal with the values shown below.",
"WEBHOOK_URL": "URL du Webhook",
"WEBHOOK_VERIFICATION_TOKEN": "Webhook Verification Token"
}, },
"SUBMIT_BUTTON": "Créer le canal WhatsApp", "SUBMIT_BUTTON": "Créer le canal WhatsApp",
"API": { "API": {

View file

@ -0,0 +1,5 @@
{
"MACROS": {
"HEADER": "Macros"
}
}

View file

@ -179,6 +179,7 @@
"CONTACTS": "Contacts", "CONTACTS": "Contacts",
"HOME": "Accueil", "HOME": "Accueil",
"AGENTS": "Agents", "AGENTS": "Agents",
"AGENT_BOTS": "Bots",
"INBOXES": "Boîtes de réception", "INBOXES": "Boîtes de réception",
"NOTIFICATIONS": "Notifications", "NOTIFICATIONS": "Notifications",
"CANNED_RESPONSES": "Réponses standardisées", "CANNED_RESPONSES": "Réponses standardisées",
@ -189,6 +190,7 @@
"LABELS": "Étiquettes", "LABELS": "Étiquettes",
"CUSTOM_ATTRIBUTES": "Attributs personnalisés", "CUSTOM_ATTRIBUTES": "Attributs personnalisés",
"AUTOMATION": "Automatisations", "AUTOMATION": "Automatisations",
"MACROS": "Macros",
"TEAMS": "Équipes", "TEAMS": "Équipes",
"BILLING": "Billing", "BILLING": "Billing",
"CUSTOM_VIEWS_FOLDER": "Dossiers", "CUSTOM_VIEWS_FOLDER": "Dossiers",

View file

@ -1,90 +1,90 @@
{ {
"FILTER": { "FILTER": {
"TITLE": "Filter Conversations", "TITLE": "סינון שיחות",
"SUBTITLE": "Add filters below and hit 'Apply filters' to filter conversations.", "SUBTITLE": "הוסף מסננים למטה והקש על 'החל מסננים' כדי לסנן שיחות.",
"ADD_NEW_FILTER": "Add Filter", "ADD_NEW_FILTER": "הוסף מסנן",
"FILTER_DELETE_ERROR": "You should have atleast one filter to save", "FILTER_DELETE_ERROR": "צריך להיות לפחות מסנן אחד כדי לשמור",
"SUBMIT_BUTTON_LABEL": "Apply filters", "SUBMIT_BUTTON_LABEL": "שמור סננים",
"CANCEL_BUTTON_LABEL": "ביטול", "CANCEL_BUTTON_LABEL": "ביטול",
"CLEAR_BUTTON_LABEL": "Clear Filters", "CLEAR_BUTTON_LABEL": "מחק סננים",
"EMPTY_VALUE_ERROR": "Value is required", "EMPTY_VALUE_ERROR": "חובה ערך",
"TOOLTIP_LABEL": "Filter conversations", "TOOLTIP_LABEL": "סינון שיחות",
"QUERY_DROPDOWN_LABELS": { "QUERY_DROPDOWN_LABELS": {
"AND": "AND", "AND": "ו/גם",
"OR": "OR" "OR": "או"
}, },
"OPERATOR_LABELS": { "OPERATOR_LABELS": {
"equal_to": "Equal to", "equal_to": "שווה ל",
"not_equal_to": "Not equal to", "not_equal_to": "לא שווה ל",
"contains": "Contains", "contains": "מכיל",
"does_not_contain": "Does not contain", "does_not_contain": "לא מכיל",
"is_present": "Is present", "is_present": "נוכח",
"is_not_present": "Is not present", "is_not_present": "לא נוכח",
"is_greater_than": "Is greater than", "is_greater_than": "גדול מ",
"is_less_than": "Is lesser than", "is_less_than": "קטן מ",
"days_before": "Is x days before" "days_before": "זה x ימים לפני"
}, },
"ATTRIBUTE_LABELS": { "ATTRIBUTE_LABELS": {
"TRUE": "True", "TRUE": "נכון",
"FALSE": "False" "FALSE": "לא נכון"
}, },
"ATTRIBUTES": { "ATTRIBUTES": {
"STATUS": "מצב", "STATUS": "מצב",
"ASSIGNEE_NAME": "Assignee Name", "ASSIGNEE_NAME": "משויך ל",
"INBOX_NAME": "שם תיבת הדואר הנכנס", "INBOX_NAME": "שם תיבת הדואר הנכנס",
"TEAM_NAME": "Team Name", "TEAM_NAME": "שם צוות",
"CONVERSATION_IDENTIFIER": "Conversation Identifier", "CONVERSATION_IDENTIFIER": "מזהה שיחה",
"CAMPAIGN_NAME": "Campaign Name", "CAMPAIGN_NAME": "שם קמפיין",
"LABELS": "Labels", "LABELS": "תוויות",
"BROWSER_LANGUAGE": "Browser Language", "BROWSER_LANGUAGE": "שפת דפדפן",
"COUNTRY_NAME": "Country Name", "COUNTRY_NAME": "שם המדינה",
"REFERER_LINK": "Referer link", "REFERER_LINK": "קישור מפנה",
"CUSTOM_ATTRIBUTE_LIST": "List", "CUSTOM_ATTRIBUTE_LIST": "רשימה",
"CUSTOM_ATTRIBUTE_TEXT": "Text", "CUSTOM_ATTRIBUTE_TEXT": "טקסט",
"CUSTOM_ATTRIBUTE_NUMBER": "Number", "CUSTOM_ATTRIBUTE_NUMBER": "מספר",
"CUSTOM_ATTRIBUTE_LINK": "Link", "CUSTOM_ATTRIBUTE_LINK": "קישור",
"CUSTOM_ATTRIBUTE_CHECKBOX": "Checkbox", "CUSTOM_ATTRIBUTE_CHECKBOX": "תיבת סימון",
"CREATED_AT": "Created At", "CREATED_AT": "הוקם ב",
"LAST_ACTIVITY": "פעילות אחרונה" "LAST_ACTIVITY": "פעילות אחרונה"
}, },
"GROUPS": { "GROUPS": {
"STANDARD_FILTERS": "Standard Filters", "STANDARD_FILTERS": "סננים סטנדרטיים",
"ADDITIONAL_FILTERS": "Additional Filters", "ADDITIONAL_FILTERS": "סננים נוספים",
"CUSTOM_ATTRIBUTES": "מאפיינים בהתאמה אישית" "CUSTOM_ATTRIBUTES": "מאפיינים בהתאמה אישית"
}, },
"CUSTOM_VIEWS": { "CUSTOM_VIEWS": {
"ADD": { "ADD": {
"TITLE": "Do you want to save this filter?", "TITLE": "האם אתה רוצה לשמור את המסנן הזה?",
"LABEL": "Name this filter", "LABEL": "תן שם למסנן הזה",
"PLACEHOLDER": "Enter a name for this filter", "PLACEHOLDER": "תן שם למסנן הזה",
"ERROR_MESSAGE": "שם שדה חובה", "ERROR_MESSAGE": "שם שדה חובה",
"SAVE_BUTTON": "Save filter", "SAVE_BUTTON": "שמור מסנן",
"CANCEL_BUTTON": "ביטול", "CANCEL_BUTTON": "ביטול",
"API_FOLDERS": { "API_FOLDERS": {
"SUCCESS_MESSAGE": "Folder created successfully", "SUCCESS_MESSAGE": "התיקיה נשמרה בהצלחה",
"ERROR_MESSAGE": "Error while creating folder" "ERROR_MESSAGE": "שגיאה או תקלה בהקמת התיקיה"
}, },
"API_SEGMENTS": { "API_SEGMENTS": {
"SUCCESS_MESSAGE": "Segment created successfully", "SUCCESS_MESSAGE": "הסגמנט נשמר בהצלחה",
"ERROR_MESSAGE": "Error while creating segment" "ERROR_MESSAGE": "תקלה או שגיאה בהקמת הסגמנט"
} }
}, },
"DELETE": { "DELETE": {
"DELETE_BUTTON": "Delete filter", "DELETE_BUTTON": "מחק מסנן",
"MODAL": { "MODAL": {
"CONFIRM": { "CONFIRM": {
"TITLE": "אשר מחיקה", "TITLE": "אשר מחיקה",
"MESSAGE": "Are you sure to delete the filter ", "MESSAGE": "האם אתה בטוח למחוק הסנן הזה ",
"YES": "כן, מחק", "YES": "כן, מחק",
"NO": "לא, השאר" "NO": "לא, השאר"
} }
}, },
"API_FOLDERS": { "API_FOLDERS": {
"SUCCESS_MESSAGE": "Folder deleted successfully", "SUCCESS_MESSAGE": "תיקיה נמחקה בהצלחה",
"ERROR_MESSAGE": "Error while deleting folder" "ERROR_MESSAGE": "שגיאה או תקלה במחיקת תיקיה"
}, },
"API_SEGMENTS": { "API_SEGMENTS": {
"SUCCESS_MESSAGE": "Segment deleted successfully", "SUCCESS_MESSAGE": "סגמנט נמחק בהצלחה",
"ERROR_MESSAGE": "Error while deleting segment" "ERROR_MESSAGE": "Error while deleting segment"
} }
} }

View file

@ -0,0 +1,5 @@
{
"AGENT_BOTS": {
"HEADER": "בוטים"
}
}

View file

@ -1,11 +1,11 @@
{ {
"ATTRIBUTES_MGMT": { "ATTRIBUTES_MGMT": {
"HEADER": "מאפיינים בהתאמה אישית", "HEADER": "מאפיינים בהתאמה אישית",
"HEADER_BTN_TXT": "Add Custom Attribute", "HEADER_BTN_TXT": "הוסף מאפיין מותאם אישית",
"LOADING": "Fetching custom attributes", "LOADING": "שולף מאפיינים מותאמים אישית",
"SIDEBAR_TXT": "<p><b>Custom Attributes</b> <p>A custom attribute tracks facts about your contacts/conversation — like the subscription plan, or when they ordered the first item etc. <br /><br />For creating a Custom Attribute, just click on the <b>Add Custom Attribute.</b> You can also edit or delete an existing Custom Attribute by clicking on the Edit or Delete button.</p>", "SIDEBAR_TXT": "<p><b>Custom Attributes</b> <p>A custom attribute tracks facts about your contacts/conversation — like the subscription plan, or when they ordered the first item etc. <br /><br />For creating a Custom Attribute, just click on the <b>Add Custom Attribute.</b> You can also edit or delete an existing Custom Attribute by clicking on the Edit or Delete button.</p>",
"ADD": { "ADD": {
"TITLE": "Add Custom Attribute", "TITLE": "הוסף מאפיין מותאם אישית",
"SUBMIT": "צור", "SUBMIT": "צור",
"CANCEL_BUTTON_TEXT": "ביטול", "CANCEL_BUTTON_TEXT": "ביטול",
"FORM": { "FORM": {
@ -31,14 +31,14 @@
"LIST": { "LIST": {
"LABEL": "List Values", "LABEL": "List Values",
"PLACEHOLDER": "Please enter value and press enter key", "PLACEHOLDER": "Please enter value and press enter key",
"ERROR": "Must have at least one value" "ERROR": "חובה להזין לפחות ערך אחד"
} }
}, },
"KEY": { "KEY": {
"LABEL": "מפתח", "LABEL": "מפתח",
"PLACEHOLDER": "Enter custom attribute key", "PLACEHOLDER": "Enter custom attribute key",
"ERROR": "Key is required", "ERROR": "מפתח הוא שדה חובה",
"IN_VALID": "Invalid key" "IN_VALID": "מפתח אינו חוקי"
} }
}, },
"API": { "API": {
@ -50,7 +50,7 @@
"BUTTON_TEXT": "מחק", "BUTTON_TEXT": "מחק",
"API": { "API": {
"SUCCESS_MESSAGE": "Custom Attribute deleted successfully.", "SUCCESS_MESSAGE": "Custom Attribute deleted successfully.",
"ERROR_MESSAGE": "Couldn't delete the custom attribute. Try again." "ERROR_MESSAGE": "לא ניתן למחוק את המאפיין המותאם אישית. נסה שנית."
}, },
"CONFIRM": { "CONFIRM": {
"TITLE": "האם אתה בטוח רוצה למחוק - %{attributeName}", "TITLE": "האם אתה בטוח רוצה למחוק - %{attributeName}",
@ -65,7 +65,7 @@
"UPDATE_BUTTON_TEXT": "עדכן", "UPDATE_BUTTON_TEXT": "עדכן",
"TYPE": { "TYPE": {
"LIST": { "LIST": {
"LABEL": "List Values", "LABEL": "רשימת ערכים",
"PLACEHOLDER": "Please enter values and press enter key" "PLACEHOLDER": "Please enter values and press enter key"
} }
}, },

View file

@ -2,9 +2,11 @@
"BULK_ACTION": { "BULK_ACTION": {
"CONVERSATIONS_SELECTED": "%{conversationCount} conversations selected", "CONVERSATIONS_SELECTED": "%{conversationCount} conversations selected",
"AGENT_SELECT_LABEL": "בחר סוכן", "AGENT_SELECT_LABEL": "בחר סוכן",
"ASSIGN_CONFIRMATION_LABEL": "Are you sure you want to assign %{conversationCount} %{conversationLabel} to", "ASSIGN_CONFIRMATION_LABEL": "Are you sure to assign %{conversationCount} %{conversationLabel} to",
"UNASSIGN_CONFIRMATION_LABEL": "Are you sure to unassign %{conversationCount} %{conversationLabel}?",
"GO_BACK_LABEL": "Go back", "GO_BACK_LABEL": "Go back",
"ASSIGN_LABEL": "שייך", "ASSIGN_LABEL": "שייך",
"YES": "כן",
"ASSIGN_AGENT_TOOLTIP": "Assign Agent", "ASSIGN_AGENT_TOOLTIP": "Assign Agent",
"ASSIGN_SUCCESFUL": "Conversations assigned successfully", "ASSIGN_SUCCESFUL": "Conversations assigned successfully",
"ASSIGN_FAILED": "Failed to assign conversations, please try again", "ASSIGN_FAILED": "Failed to assign conversations, please try again",

View file

@ -2,28 +2,28 @@
"CONTACTS_FILTER": { "CONTACTS_FILTER": {
"TITLE": "Filter Contacts", "TITLE": "Filter Contacts",
"SUBTITLE": "Add filters below and hit 'Submit' to filter contacts.", "SUBTITLE": "Add filters below and hit 'Submit' to filter contacts.",
"ADD_NEW_FILTER": "Add Filter", "ADD_NEW_FILTER": "הוסף מסנן",
"CLEAR_ALL_FILTERS": "Clear All Filters", "CLEAR_ALL_FILTERS": "Clear All Filters",
"FILTER_DELETE_ERROR": "You should have atleast one filter to save", "FILTER_DELETE_ERROR": "צריך להיות לפחות מסנן אחד כדי לשמור",
"SUBMIT_BUTTON_LABEL": "שלח", "SUBMIT_BUTTON_LABEL": "שלח",
"CANCEL_BUTTON_LABEL": "ביטול", "CANCEL_BUTTON_LABEL": "ביטול",
"CLEAR_BUTTON_LABEL": "Clear Filters", "CLEAR_BUTTON_LABEL": "מחק סננים",
"EMPTY_VALUE_ERROR": "Value is required", "EMPTY_VALUE_ERROR": "חובה ערך",
"TOOLTIP_LABEL": "Filter contacts", "TOOLTIP_LABEL": "Filter contacts",
"QUERY_DROPDOWN_LABELS": { "QUERY_DROPDOWN_LABELS": {
"AND": "AND", "AND": "ו/גם",
"OR": "OR" "OR": "או"
}, },
"OPERATOR_LABELS": { "OPERATOR_LABELS": {
"equal_to": "Equal to", "equal_to": "שווה ל",
"not_equal_to": "Not equal to", "not_equal_to": "לא שווה ל",
"contains": "Contains", "contains": "מכיל",
"does_not_contain": "Does not contain", "does_not_contain": "לא מכיל",
"is_present": "Is present", "is_present": "נוכח",
"is_not_present": "Is not present", "is_not_present": "לא נוכח",
"is_greater_than": "Is greater than", "is_greater_than": "גדול מ",
"is_lesser_than": "Is lesser than", "is_lesser_than": "Is lesser than",
"days_before": "Is x days before" "days_before": "זה x ימים לפני"
}, },
"ATTRIBUTES": { "ATTRIBUTES": {
"NAME": "שם", "NAME": "שם",
@ -32,18 +32,18 @@
"IDENTIFIER": "Identifier", "IDENTIFIER": "Identifier",
"CITY": "עיר", "CITY": "עיר",
"COUNTRY": "מדינה", "COUNTRY": "מדינה",
"CUSTOM_ATTRIBUTE_LIST": "List", "CUSTOM_ATTRIBUTE_LIST": "רשימה",
"CUSTOM_ATTRIBUTE_TEXT": "Text", "CUSTOM_ATTRIBUTE_TEXT": "טקסט",
"CUSTOM_ATTRIBUTE_NUMBER": "Number", "CUSTOM_ATTRIBUTE_NUMBER": "מספר",
"CUSTOM_ATTRIBUTE_LINK": "Link", "CUSTOM_ATTRIBUTE_LINK": "קישור",
"CUSTOM_ATTRIBUTE_CHECKBOX": "Checkbox", "CUSTOM_ATTRIBUTE_CHECKBOX": "תיבת סימון",
"CREATED_AT": "Created At", "CREATED_AT": "הוקם ב",
"LAST_ACTIVITY": "פעילות אחרונה", "LAST_ACTIVITY": "פעילות אחרונה",
"REFERER_LINK": "Referrer link" "REFERER_LINK": "Referrer link"
}, },
"GROUPS": { "GROUPS": {
"STANDARD_FILTERS": "Standard Filters", "STANDARD_FILTERS": "סננים סטנדרטיים",
"ADDITIONAL_FILTERS": "Additional Filters", "ADDITIONAL_FILTERS": "סננים נוספים",
"CUSTOM_ATTRIBUTES": "מאפיינים בהתאמה אישית" "CUSTOM_ATTRIBUTES": "מאפיינים בהתאמה אישית"
} }
} }

View file

@ -66,19 +66,19 @@
"RESOLVED": "סמן כפתור", "RESOLVED": "סמן כפתור",
"REOPEN": "פתח מחדש את השיחה", "REOPEN": "פתח מחדש את השיחה",
"SNOOZE": { "SNOOZE": {
"TITLE": "Snooze", "TITLE": "נודניק",
"NEXT_REPLY": "עד תגובה הבאה", "NEXT_REPLY": "עד תגובה הבאה",
"TOMORROW": "עד מחר", "TOMORROW": "עד מחר",
"NEXT_WEEK": "עד שבוע הבא" "NEXT_WEEK": "עד שבוע הבא"
}, },
"ASSIGN_AGENT": "שייך סוכן", "ASSIGN_AGENT": "שייך סוכן",
"ASSIGN_LABEL": "Assign label", "ASSIGN_LABEL": "ההקצה תווית",
"AGENTS_LOADING": "טוען סוכנים...", "AGENTS_LOADING": "טוען סוכנים...",
"ASSIGN_TEAM": "שייך צוות", "ASSIGN_TEAM": "שייך צוות",
"API": { "API": {
"AGENT_ASSIGNMENT": { "AGENT_ASSIGNMENT": {
"SUCCESFUL": "Conversation id %{conversationId} assigned to \"%{agentName}\"", "SUCCESFUL": "Conversation id %{conversationId} assigned to \"%{agentName}\"",
"FAILED": "Couldn't assign agent. Please try again." "FAILED": "השמת הסוכן לא הצליחה. בבקשה נסה שנית."
}, },
"LABEL_ASSIGNMENT": { "LABEL_ASSIGNMENT": {
"SUCCESFUL": "Assigned label #%{labelName} to conversation id %{conversationId}", "SUCCESFUL": "Assigned label #%{labelName} to conversation id %{conversationId}",
@ -91,12 +91,12 @@
} }
}, },
"FOOTER": { "FOOTER": {
"MESSAGE_SIGN_TOOLTIP": "Message signature", "MESSAGE_SIGN_TOOLTIP": "חתימת הודעה",
"ENABLE_SIGN_TOOLTIP": "אפשר חתימה", "ENABLE_SIGN_TOOLTIP": "אפשר חתימה",
"DISABLE_SIGN_TOOLTIP": "נטרל חתימה", "DISABLE_SIGN_TOOLTIP": "נטרל חתימה",
"MSG_INPUT": "Shift + Enter עבור שורה חדשה. התחל עם '/' כדי לבחור תגובה מוכנה.", "MSG_INPUT": "Shift + Enter עבור שורה חדשה. התחל עם '/' כדי לבחור תגובה מוכנה.",
"PRIVATE_MSG_INPUT": "Shift + Enter עבור שורה חדשה. זה יהיה גלוי רק לסוכנים", "PRIVATE_MSG_INPUT": "Shift + Enter עבור שורה חדשה. זה יהיה גלוי רק לסוכנים",
"MESSAGE_SIGNATURE_NOT_CONFIGURED": "Message signature is not configured, please configure it in profile settings.", "MESSAGE_SIGNATURE_NOT_CONFIGURED": "חתימת הודעה אינה מוגדרת, נא הגדר אותה בהגדרות הפרופיל.",
"CLICK_HERE": "לחץ כאן כדי לעדכן" "CLICK_HERE": "לחץ כאן כדי לעדכן"
}, },
"REPLYBOX": { "REPLYBOX": {

View file

@ -306,7 +306,7 @@
"PUBLISH_ARTICLE": { "PUBLISH_ARTICLE": {
"API": { "API": {
"ERROR": "Error while publishing article", "ERROR": "Error while publishing article",
"SUCCESS": "Article publishied successfully" "SUCCESS": "Article published successfully"
} }
}, },
"ARCHIVE_ARTICLE": { "ARCHIVE_ARTICLE": {

View file

@ -0,0 +1,5 @@
{
"MACROS": {
"HEADER": "Macros"
}
}

View file

@ -179,7 +179,7 @@
"CONTACTS": "איש קשר", "CONTACTS": "איש קשר",
"HOME": "בית", "HOME": "בית",
"AGENTS": "סוכנים", "AGENTS": "סוכנים",
"AGENT_BOTS": "Bots", "AGENT_BOTS": "בוטים",
"INBOXES": "תיבות דואר נכנס", "INBOXES": "תיבות דואר נכנס",
"NOTIFICATIONS": "התראות", "NOTIFICATIONS": "התראות",
"CANNED_RESPONSES": "תגובות מוכנות", "CANNED_RESPONSES": "תגובות מוכנות",

View file

@ -0,0 +1,5 @@
{
"AGENT_BOTS": {
"HEADER": "Bots"
}
}

View file

@ -2,9 +2,11 @@
"BULK_ACTION": { "BULK_ACTION": {
"CONVERSATIONS_SELECTED": "%{conversationCount} conversations selected", "CONVERSATIONS_SELECTED": "%{conversationCount} conversations selected",
"AGENT_SELECT_LABEL": "Select Agent", "AGENT_SELECT_LABEL": "Select Agent",
"ASSIGN_CONFIRMATION_LABEL": "Are you sure you want to assign %{conversationCount} %{conversationLabel} to", "ASSIGN_CONFIRMATION_LABEL": "Are you sure to assign %{conversationCount} %{conversationLabel} to",
"UNASSIGN_CONFIRMATION_LABEL": "Are you sure to unassign %{conversationCount} %{conversationLabel}?",
"GO_BACK_LABEL": "Go back", "GO_BACK_LABEL": "Go back",
"ASSIGN_LABEL": "Assign", "ASSIGN_LABEL": "Assign",
"YES": "Yes",
"ASSIGN_AGENT_TOOLTIP": "Assign Agent", "ASSIGN_AGENT_TOOLTIP": "Assign Agent",
"ASSIGN_SUCCESFUL": "Conversations assigned successfully", "ASSIGN_SUCCESFUL": "Conversations assigned successfully",
"ASSIGN_FAILED": "Failed to assign conversations, please try again", "ASSIGN_FAILED": "Failed to assign conversations, please try again",

View file

@ -306,7 +306,7 @@
"PUBLISH_ARTICLE": { "PUBLISH_ARTICLE": {
"API": { "API": {
"ERROR": "Error while publishing article", "ERROR": "Error while publishing article",
"SUCCESS": "Article publishied successfully" "SUCCESS": "Article published successfully"
} }
}, },
"ARCHIVE_ARTICLE": { "ARCHIVE_ARTICLE": {

View file

@ -239,7 +239,9 @@
}, },
"API_CALLBACK": { "API_CALLBACK": {
"TITLE": "Callback URL", "TITLE": "Callback URL",
"SUBTITLE": "You have to configure the webhook URL in facebook developer portal with the URL mentioned here." "SUBTITLE": "You have to configure the webhook URL and the verification token in the Facebook Developer portal with the values shown below.",
"WEBHOOK_URL": "Webhook URL",
"WEBHOOK_VERIFICATION_TOKEN": "Webhook Verification Token"
}, },
"SUBMIT_BUTTON": "Create WhatsApp Channel", "SUBMIT_BUTTON": "Create WhatsApp Channel",
"API": { "API": {

View file

@ -0,0 +1,5 @@
{
"MACROS": {
"HEADER": "Macros"
}
}

View file

@ -179,6 +179,7 @@
"CONTACTS": "Contacts", "CONTACTS": "Contacts",
"HOME": "Home", "HOME": "Home",
"AGENTS": "Agents", "AGENTS": "Agents",
"AGENT_BOTS": "Bots",
"INBOXES": "Inboxes", "INBOXES": "Inboxes",
"NOTIFICATIONS": "Notifications", "NOTIFICATIONS": "Notifications",
"CANNED_RESPONSES": "Canned Responses", "CANNED_RESPONSES": "Canned Responses",
@ -189,6 +190,7 @@
"LABELS": "Labels", "LABELS": "Labels",
"CUSTOM_ATTRIBUTES": "Custom Attributes", "CUSTOM_ATTRIBUTES": "Custom Attributes",
"AUTOMATION": "Automation", "AUTOMATION": "Automation",
"MACROS": "Macros",
"TEAMS": "Teams", "TEAMS": "Teams",
"BILLING": "Billing", "BILLING": "Billing",
"CUSTOM_VIEWS_FOLDER": "Folders", "CUSTOM_VIEWS_FOLDER": "Folders",

View file

@ -0,0 +1,5 @@
{
"AGENT_BOTS": {
"HEADER": "Bots"
}
}

View file

@ -2,9 +2,11 @@
"BULK_ACTION": { "BULK_ACTION": {
"CONVERSATIONS_SELECTED": "%{conversationCount} conversations selected", "CONVERSATIONS_SELECTED": "%{conversationCount} conversations selected",
"AGENT_SELECT_LABEL": "Ügynök kiválasztása", "AGENT_SELECT_LABEL": "Ügynök kiválasztása",
"ASSIGN_CONFIRMATION_LABEL": "Are you sure you want to assign %{conversationCount} %{conversationLabel} to", "ASSIGN_CONFIRMATION_LABEL": "Are you sure to assign %{conversationCount} %{conversationLabel} to",
"UNASSIGN_CONFIRMATION_LABEL": "Are you sure to unassign %{conversationCount} %{conversationLabel}?",
"GO_BACK_LABEL": "Go back", "GO_BACK_LABEL": "Go back",
"ASSIGN_LABEL": "Hozzárendelés", "ASSIGN_LABEL": "Hozzárendelés",
"YES": "Igen",
"ASSIGN_AGENT_TOOLTIP": "Assign Agent", "ASSIGN_AGENT_TOOLTIP": "Assign Agent",
"ASSIGN_SUCCESFUL": "Conversations assigned successfully", "ASSIGN_SUCCESFUL": "Conversations assigned successfully",
"ASSIGN_FAILED": "Failed to assign conversations, please try again", "ASSIGN_FAILED": "Failed to assign conversations, please try again",

View file

@ -306,7 +306,7 @@
"PUBLISH_ARTICLE": { "PUBLISH_ARTICLE": {
"API": { "API": {
"ERROR": "Error while publishing article", "ERROR": "Error while publishing article",
"SUCCESS": "Article publishied successfully" "SUCCESS": "Article published successfully"
} }
}, },
"ARCHIVE_ARTICLE": { "ARCHIVE_ARTICLE": {

View file

@ -239,7 +239,9 @@
}, },
"API_CALLBACK": { "API_CALLBACK": {
"TITLE": "Visszahívás URL", "TITLE": "Visszahívás URL",
"SUBTITLE": "You have to configure the webhook URL in facebook developer portal with the URL mentioned here." "SUBTITLE": "You have to configure the webhook URL and the verification token in the Facebook Developer portal with the values shown below.",
"WEBHOOK_URL": "Webhook URL",
"WEBHOOK_VERIFICATION_TOKEN": "Webhook Verification Token"
}, },
"SUBMIT_BUTTON": "Create WhatsApp Channel", "SUBMIT_BUTTON": "Create WhatsApp Channel",
"API": { "API": {

View file

@ -0,0 +1,5 @@
{
"MACROS": {
"HEADER": "Macros"
}
}

View file

@ -179,6 +179,7 @@
"CONTACTS": "Kontaktok", "CONTACTS": "Kontaktok",
"HOME": "Nyitólap", "HOME": "Nyitólap",
"AGENTS": "Ügynökök", "AGENTS": "Ügynökök",
"AGENT_BOTS": "Bots",
"INBOXES": "Bejövők", "INBOXES": "Bejövők",
"NOTIFICATIONS": "Értesítések", "NOTIFICATIONS": "Értesítések",
"CANNED_RESPONSES": "Mentett válaszok", "CANNED_RESPONSES": "Mentett válaszok",
@ -189,6 +190,7 @@
"LABELS": "Cimkék", "LABELS": "Cimkék",
"CUSTOM_ATTRIBUTES": "Egyedi atribútumok", "CUSTOM_ATTRIBUTES": "Egyedi atribútumok",
"AUTOMATION": "Automation", "AUTOMATION": "Automation",
"MACROS": "Macros",
"TEAMS": "Csapatok", "TEAMS": "Csapatok",
"BILLING": "Billing", "BILLING": "Billing",
"CUSTOM_VIEWS_FOLDER": "Folders", "CUSTOM_VIEWS_FOLDER": "Folders",

View file

@ -0,0 +1,5 @@
{
"AGENT_BOTS": {
"HEADER": "Bots"
}
}

View file

@ -2,9 +2,11 @@
"BULK_ACTION": { "BULK_ACTION": {
"CONVERSATIONS_SELECTED": "%{conversationCount} conversations selected", "CONVERSATIONS_SELECTED": "%{conversationCount} conversations selected",
"AGENT_SELECT_LABEL": "Pilih Agen", "AGENT_SELECT_LABEL": "Pilih Agen",
"ASSIGN_CONFIRMATION_LABEL": "Are you sure you want to assign %{conversationCount} %{conversationLabel} to", "ASSIGN_CONFIRMATION_LABEL": "Are you sure to assign %{conversationCount} %{conversationLabel} to",
"UNASSIGN_CONFIRMATION_LABEL": "Are you sure to unassign %{conversationCount} %{conversationLabel}?",
"GO_BACK_LABEL": "Go back", "GO_BACK_LABEL": "Go back",
"ASSIGN_LABEL": "Tugaskan", "ASSIGN_LABEL": "Tugaskan",
"YES": "Ya",
"ASSIGN_AGENT_TOOLTIP": "Assign Agent", "ASSIGN_AGENT_TOOLTIP": "Assign Agent",
"ASSIGN_SUCCESFUL": "Conversations assigned successfully", "ASSIGN_SUCCESFUL": "Conversations assigned successfully",
"ASSIGN_FAILED": "Failed to assign conversations, please try again", "ASSIGN_FAILED": "Failed to assign conversations, please try again",

View file

@ -306,7 +306,7 @@
"PUBLISH_ARTICLE": { "PUBLISH_ARTICLE": {
"API": { "API": {
"ERROR": "Error while publishing article", "ERROR": "Error while publishing article",
"SUCCESS": "Article publishied successfully" "SUCCESS": "Article published successfully"
} }
}, },
"ARCHIVE_ARTICLE": { "ARCHIVE_ARTICLE": {

View file

@ -239,7 +239,9 @@
}, },
"API_CALLBACK": { "API_CALLBACK": {
"TITLE": "URL Callback", "TITLE": "URL Callback",
"SUBTITLE": "You have to configure the webhook URL in facebook developer portal with the URL mentioned here." "SUBTITLE": "You have to configure the webhook URL and the verification token in the Facebook Developer portal with the values shown below.",
"WEBHOOK_URL": "URL Webhook",
"WEBHOOK_VERIFICATION_TOKEN": "Webhook Verification Token"
}, },
"SUBMIT_BUTTON": "Create WhatsApp Channel", "SUBMIT_BUTTON": "Create WhatsApp Channel",
"API": { "API": {

View file

@ -0,0 +1,5 @@
{
"MACROS": {
"HEADER": "Macros"
}
}

View file

@ -179,6 +179,7 @@
"CONTACTS": "Kontak", "CONTACTS": "Kontak",
"HOME": "Home", "HOME": "Home",
"AGENTS": "Agen", "AGENTS": "Agen",
"AGENT_BOTS": "Bots",
"INBOXES": "Kotak masuk", "INBOXES": "Kotak masuk",
"NOTIFICATIONS": "Notifikasi", "NOTIFICATIONS": "Notifikasi",
"CANNED_RESPONSES": "Canned Responses", "CANNED_RESPONSES": "Canned Responses",
@ -189,6 +190,7 @@
"LABELS": "Label", "LABELS": "Label",
"CUSTOM_ATTRIBUTES": "Atribut Kustom", "CUSTOM_ATTRIBUTES": "Atribut Kustom",
"AUTOMATION": "Otomatisasi", "AUTOMATION": "Otomatisasi",
"MACROS": "Macros",
"TEAMS": "Tim", "TEAMS": "Tim",
"BILLING": "Billing", "BILLING": "Billing",
"CUSTOM_VIEWS_FOLDER": "Folders", "CUSTOM_VIEWS_FOLDER": "Folders",

View file

@ -0,0 +1,5 @@
{
"AGENT_BOTS": {
"HEADER": "Bots"
}
}

View file

@ -2,9 +2,11 @@
"BULK_ACTION": { "BULK_ACTION": {
"CONVERSATIONS_SELECTED": "%{conversationCount} conversazioni selezionate", "CONVERSATIONS_SELECTED": "%{conversationCount} conversazioni selezionate",
"AGENT_SELECT_LABEL": "Seleziona agente", "AGENT_SELECT_LABEL": "Seleziona agente",
"ASSIGN_CONFIRMATION_LABEL": "Sei sicuro di voler assegnare %{conversationCount} %{conversationLabel} a", "ASSIGN_CONFIRMATION_LABEL": "Are you sure to assign %{conversationCount} %{conversationLabel} to",
"UNASSIGN_CONFIRMATION_LABEL": "Are you sure to unassign %{conversationCount} %{conversationLabel}?",
"GO_BACK_LABEL": "Torna indietro", "GO_BACK_LABEL": "Torna indietro",
"ASSIGN_LABEL": "Assegna", "ASSIGN_LABEL": "Assegna",
"YES": "Sì",
"ASSIGN_AGENT_TOOLTIP": "Assegna agente", "ASSIGN_AGENT_TOOLTIP": "Assegna agente",
"ASSIGN_SUCCESFUL": "Conversazioni assegnate correttamente", "ASSIGN_SUCCESFUL": "Conversazioni assegnate correttamente",
"ASSIGN_FAILED": "Assegnazione delle conversazioni non riuscita, riprova", "ASSIGN_FAILED": "Assegnazione delle conversazioni non riuscita, riprova",

View file

@ -306,7 +306,7 @@
"PUBLISH_ARTICLE": { "PUBLISH_ARTICLE": {
"API": { "API": {
"ERROR": "Errore durante la pubblicazione dell'articolo", "ERROR": "Errore durante la pubblicazione dell'articolo",
"SUCCESS": "Articolo pubblicato con successo" "SUCCESS": "Article published successfully"
} }
}, },
"ARCHIVE_ARTICLE": { "ARCHIVE_ARTICLE": {

View file

@ -239,7 +239,9 @@
}, },
"API_CALLBACK": { "API_CALLBACK": {
"TITLE": "URL di callback", "TITLE": "URL di callback",
"SUBTITLE": "È necessario configurare l'URL del webhook nel portale sviluppatore di facebook con l'URL menzionato qui." "SUBTITLE": "You have to configure the webhook URL and the verification token in the Facebook Developer portal with the values shown below.",
"WEBHOOK_URL": "URL del webhook",
"WEBHOOK_VERIFICATION_TOKEN": "Webhook Verification Token"
}, },
"SUBMIT_BUTTON": "Crea un canale WhatsApp", "SUBMIT_BUTTON": "Crea un canale WhatsApp",
"API": { "API": {

View file

@ -0,0 +1,5 @@
{
"MACROS": {
"HEADER": "Macros"
}
}

View file

@ -179,6 +179,7 @@
"CONTACTS": "Contatti", "CONTACTS": "Contatti",
"HOME": "Home", "HOME": "Home",
"AGENTS": "Agenti", "AGENTS": "Agenti",
"AGENT_BOTS": "Bots",
"INBOXES": "Posta", "INBOXES": "Posta",
"NOTIFICATIONS": "Notifiche", "NOTIFICATIONS": "Notifiche",
"CANNED_RESPONSES": "Risposte predefinite", "CANNED_RESPONSES": "Risposte predefinite",
@ -189,6 +190,7 @@
"LABELS": "Etichette", "LABELS": "Etichette",
"CUSTOM_ATTRIBUTES": "Attributi personalizzati", "CUSTOM_ATTRIBUTES": "Attributi personalizzati",
"AUTOMATION": "Automazione", "AUTOMATION": "Automazione",
"MACROS": "Macros",
"TEAMS": "Teams", "TEAMS": "Teams",
"BILLING": "Fatturazione", "BILLING": "Fatturazione",
"CUSTOM_VIEWS_FOLDER": "Cartelle", "CUSTOM_VIEWS_FOLDER": "Cartelle",

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