From 3af7c3b2e774416a0527d1f4de0ed4eaee29d04b Mon Sep 17 00:00:00 2001 From: Pranav Date: Wed, 12 Feb 2025 16:51:35 -0800 Subject: [PATCH 01/16] fix: Move auto resolution message text content to i18n file (#10881) Move the text content to i18n file. --- config/locales/en.yml | 2 +- .../jobs/captain/inbox_pending_conversations_resolution_job.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/locales/en.yml b/config/locales/en.yml index c525074cf..16d13ab71 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -132,7 +132,6 @@ en: rating: Rating feedback: Feedback Comment recorded_at: Recorded date - notifications: notification_title: conversation_creation: 'A conversation (#%{display_id}) has been created in %{inbox_name}' @@ -180,6 +179,7 @@ en: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} has muted the conversation' unmuted: '%{user_name} has unmuted the conversation' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} typically replies in a few hours.' ways_to_reach_you_message_body: 'Give the team a way to reach you.' diff --git a/enterprise/app/jobs/captain/inbox_pending_conversations_resolution_job.rb b/enterprise/app/jobs/captain/inbox_pending_conversations_resolution_job.rb index 39c08af64..657d31bd3 100644 --- a/enterprise/app/jobs/captain/inbox_pending_conversations_resolution_job.rb +++ b/enterprise/app/jobs/captain/inbox_pending_conversations_resolution_job.rb @@ -10,7 +10,7 @@ class Captain::InboxPendingConversationsResolutionJob < ApplicationJob message_type: :outgoing, account_id: conversation.account_id, inbox_id: conversation.inbox_id, - content: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' + content: I18n.t('conversations.activity.auto_resolution_message') } ) conversation.resolved! From 4397ee7d3b6fb9f9d0d25ec4220ef224b088d229 Mon Sep 17 00:00:00 2001 From: Chatwoot Bot <92152627+chatwoot-bot@users.noreply.github.com> Date: Wed, 12 Feb 2025 17:43:46 -0800 Subject: [PATCH 02/16] chore: Update translations, add pnpm sync:i18n command (#10893) Added a command to sync files in the locale/*/ folder. Run `pnpm sync:i18n` would copy index.js in `dashboard/locale/en` to every other folder `dashboard/locale/*/` --------- Co-authored-by: Pranav --- .husky/pre-commit | 16 ++-- .../dashboard/i18n/locale/am/index.js | 77 +++++++++++++++++++ .../dashboard/i18n/locale/ar/index.js | 12 +++ .../dashboard/i18n/locale/az/index.js | 77 +++++++++++++++++++ .../dashboard/i18n/locale/bg/index.js | 12 +++ .../dashboard/i18n/locale/ca/index.js | 12 +++ .../dashboard/i18n/locale/cs/index.js | 12 +++ .../dashboard/i18n/locale/da/index.js | 12 +++ .../dashboard/i18n/locale/de/index.js | 12 +++ .../dashboard/i18n/locale/el/index.js | 12 +++ .../dashboard/i18n/locale/en/index.js | 12 +-- .../dashboard/i18n/locale/es/index.js | 12 +++ .../dashboard/i18n/locale/fa/index.js | 12 +++ .../dashboard/i18n/locale/fi/index.js | 12 +++ .../dashboard/i18n/locale/fr/index.js | 12 +++ .../dashboard/i18n/locale/he/index.js | 12 +++ .../dashboard/i18n/locale/hi/index.js | 12 +++ .../dashboard/i18n/locale/hr/index.js | 12 +++ .../dashboard/i18n/locale/hu/index.js | 12 +++ .../dashboard/i18n/locale/hy/index.js | 12 +++ .../dashboard/i18n/locale/id/index.js | 12 +++ .../dashboard/i18n/locale/is/index.js | 12 +++ .../dashboard/i18n/locale/it/index.js | 12 +++ .../dashboard/i18n/locale/ja/index.js | 12 +++ .../dashboard/i18n/locale/ka/index.js | 12 +++ .../dashboard/i18n/locale/ko/index.js | 12 +++ .../dashboard/i18n/locale/lt/index.js | 12 +++ .../dashboard/i18n/locale/lv/index.js | 12 +++ .../dashboard/i18n/locale/ml/index.js | 12 +++ .../dashboard/i18n/locale/ms/index.js | 12 +++ .../dashboard/i18n/locale/ne/index.js | 12 +++ .../dashboard/i18n/locale/nl/index.js | 12 +++ .../dashboard/i18n/locale/no/index.js | 12 +++ .../dashboard/i18n/locale/pl/index.js | 12 +++ .../dashboard/i18n/locale/pt/index.js | 12 +++ .../i18n/locale/pt_BR/cannedMgmt.json | 2 +- .../dashboard/i18n/locale/pt_BR/chatlist.json | 4 +- .../dashboard/i18n/locale/pt_BR/contact.json | 8 +- .../dashboard/i18n/locale/pt_BR/inbox.json | 6 +- .../dashboard/i18n/locale/pt_BR/index.js | 12 +++ .../i18n/locale/pt_BR/integrations.json | 4 +- .../dashboard/i18n/locale/ro/index.js | 12 +++ .../dashboard/i18n/locale/ru/index.js | 12 +++ .../dashboard/i18n/locale/sh/index.js | 12 +++ .../dashboard/i18n/locale/sk/index.js | 12 +++ .../dashboard/i18n/locale/sl/index.js | 77 +++++++++++++++++++ .../dashboard/i18n/locale/sq/index.js | 77 +++++++++++++++++++ .../dashboard/i18n/locale/sr/index.js | 12 +++ .../dashboard/i18n/locale/sv/index.js | 12 +++ .../dashboard/i18n/locale/ta/index.js | 12 +++ .../dashboard/i18n/locale/th/index.js | 12 +++ .../dashboard/i18n/locale/tl/index.js | 77 +++++++++++++++++++ .../dashboard/i18n/locale/tr/index.js | 12 +++ .../dashboard/i18n/locale/uk/index.js | 12 +++ .../dashboard/i18n/locale/ur/index.js | 12 +++ .../dashboard/i18n/locale/ur_IN/index.js | 12 +++ .../dashboard/i18n/locale/vi/index.js | 12 +++ .../dashboard/i18n/locale/zh/index.js | 12 +++ .../dashboard/i18n/locale/zh_CN/index.js | 12 +++ .../dashboard/i18n/locale/zh_TW/index.js | 12 +++ bin/sync_i18n_file_change | 52 +++++++++++++ config/locales/am.yml | 1 + config/locales/ar.yml | 1 + config/locales/az.yml | 1 + config/locales/bg.yml | 1 + config/locales/ca.yml | 1 + config/locales/cs.yml | 1 + config/locales/da.yml | 1 + config/locales/de.yml | 1 + config/locales/el.yml | 1 + config/locales/es.yml | 1 + config/locales/fa.yml | 1 + config/locales/fi.yml | 1 + config/locales/fr.yml | 1 + config/locales/he.yml | 1 + config/locales/hi.yml | 1 + config/locales/hr.yml | 1 + config/locales/hu.yml | 1 + config/locales/hy.yml | 1 + config/locales/id.yml | 1 + config/locales/is.yml | 1 + config/locales/it.yml | 1 + config/locales/ja.yml | 1 + config/locales/ka.yml | 1 + config/locales/ko.yml | 1 + config/locales/lt.yml | 1 + config/locales/lv.yml | 1 + config/locales/ml.yml | 1 + config/locales/ms.yml | 1 + config/locales/ne.yml | 1 + config/locales/nl.yml | 1 + config/locales/no.yml | 1 + config/locales/pl.yml | 1 + config/locales/pt.yml | 1 + config/locales/pt_BR.yml | 3 +- config/locales/ro.yml | 1 + config/locales/ru.yml | 1 + config/locales/sh.yml | 1 + config/locales/sk.yml | 1 + config/locales/sl.yml | 1 + config/locales/sq.yml | 1 + config/locales/sr.yml | 1 + config/locales/sv.yml | 1 + config/locales/ta.yml | 1 + config/locales/th.yml | 1 + config/locales/tl.yml | 1 + config/locales/tr.yml | 1 + config/locales/uk.yml | 1 + config/locales/ur.yml | 1 + config/locales/ur_IN.yml | 1 + config/locales/vi.yml | 1 + config/locales/zh_CN.yml | 1 + config/locales/zh_TW.yml | 1 + package.json | 3 +- 114 files changed, 1094 insertions(+), 28 deletions(-) create mode 100644 app/javascript/dashboard/i18n/locale/am/index.js create mode 100644 app/javascript/dashboard/i18n/locale/az/index.js create mode 100644 app/javascript/dashboard/i18n/locale/sl/index.js create mode 100644 app/javascript/dashboard/i18n/locale/sq/index.js create mode 100644 app/javascript/dashboard/i18n/locale/tl/index.js create mode 100755 bin/sync_i18n_file_change diff --git a/.husky/pre-commit b/.husky/pre-commit index 2525dde4e..adda426ad 100755 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -1,11 +1,11 @@ -# #!/bin/sh -# . "$(dirname "$0")/_/husky.sh" +#!/bin/sh +. "$(dirname "$0")/_/husky.sh" -# # lint js and vue files -# npx --no-install lint-staged +# lint js and vue files +npx --no-install lint-staged -# # lint only staged ruby files -# git diff --name-only --cached | xargs ls -1 2>/dev/null | grep '\.rb$' | xargs bundle exec rubocop --force-exclusion -a +# lint only staged ruby files +git diff --name-only --cached | xargs ls -1 2>/dev/null | grep '\.rb$' | xargs bundle exec rubocop --force-exclusion -a -# # stage rubocop changes to files -# git diff --name-only --cached | xargs git add +# stage rubocop changes to files +git diff --name-only --cached | xargs git add diff --git a/app/javascript/dashboard/i18n/locale/am/index.js b/app/javascript/dashboard/i18n/locale/am/index.js new file mode 100644 index 000000000..213387d0c --- /dev/null +++ b/app/javascript/dashboard/i18n/locale/am/index.js @@ -0,0 +1,77 @@ +import advancedFilters from './advancedFilters.json'; +import agentBots from './agentBots.json'; +import agentMgmt from './agentMgmt.json'; +import attributesMgmt from './attributesMgmt.json'; +import auditLogs from './auditLogs.json'; +import automation from './automation.json'; +import bulkActions from './bulkActions.json'; +import campaign from './campaign.json'; +import cannedMgmt from './cannedMgmt.json'; +import chatlist from './chatlist.json'; +import components from './components.json'; +import contact from './contact.json'; +import contactFilters from './contactFilters.json'; +import conversation from './conversation.json'; +import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; +import emoji from './emoji.json'; +import general from './general.json'; +import generalSettings from './generalSettings.json'; +import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; +import inboxMgmt from './inboxMgmt.json'; +import integrationApps from './integrationApps.json'; +import integrations from './integrations.json'; +import labelsMgmt from './labelsMgmt.json'; +import login from './login.json'; +import macros from './macros.json'; +import report from './report.json'; +import resetPassword from './resetPassword.json'; +import search from './search.json'; +import setNewPassword from './setNewPassword.json'; +import settings from './settings.json'; +import signup from './signup.json'; +import sla from './sla.json'; +import teamsSettings from './teamsSettings.json'; +import whatsappTemplates from './whatsappTemplates.json'; + +export default { + ...advancedFilters, + ...agentBots, + ...agentMgmt, + ...attributesMgmt, + ...auditLogs, + ...automation, + ...bulkActions, + ...campaign, + ...cannedMgmt, + ...chatlist, + ...components, + ...contact, + ...contactFilters, + ...conversation, + ...csatMgmt, + ...customRole, + ...datePicker, + ...emoji, + ...general, + ...generalSettings, + ...helpCenter, + ...inbox, + ...inboxMgmt, + ...integrationApps, + ...integrations, + ...labelsMgmt, + ...login, + ...macros, + ...report, + ...resetPassword, + ...search, + ...setNewPassword, + ...settings, + ...signup, + ...sla, + ...teamsSettings, + ...whatsappTemplates, +}; diff --git a/app/javascript/dashboard/i18n/locale/ar/index.js b/app/javascript/dashboard/i18n/locale/ar/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/ar/index.js +++ b/app/javascript/dashboard/i18n/locale/ar/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/az/index.js b/app/javascript/dashboard/i18n/locale/az/index.js new file mode 100644 index 000000000..213387d0c --- /dev/null +++ b/app/javascript/dashboard/i18n/locale/az/index.js @@ -0,0 +1,77 @@ +import advancedFilters from './advancedFilters.json'; +import agentBots from './agentBots.json'; +import agentMgmt from './agentMgmt.json'; +import attributesMgmt from './attributesMgmt.json'; +import auditLogs from './auditLogs.json'; +import automation from './automation.json'; +import bulkActions from './bulkActions.json'; +import campaign from './campaign.json'; +import cannedMgmt from './cannedMgmt.json'; +import chatlist from './chatlist.json'; +import components from './components.json'; +import contact from './contact.json'; +import contactFilters from './contactFilters.json'; +import conversation from './conversation.json'; +import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; +import emoji from './emoji.json'; +import general from './general.json'; +import generalSettings from './generalSettings.json'; +import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; +import inboxMgmt from './inboxMgmt.json'; +import integrationApps from './integrationApps.json'; +import integrations from './integrations.json'; +import labelsMgmt from './labelsMgmt.json'; +import login from './login.json'; +import macros from './macros.json'; +import report from './report.json'; +import resetPassword from './resetPassword.json'; +import search from './search.json'; +import setNewPassword from './setNewPassword.json'; +import settings from './settings.json'; +import signup from './signup.json'; +import sla from './sla.json'; +import teamsSettings from './teamsSettings.json'; +import whatsappTemplates from './whatsappTemplates.json'; + +export default { + ...advancedFilters, + ...agentBots, + ...agentMgmt, + ...attributesMgmt, + ...auditLogs, + ...automation, + ...bulkActions, + ...campaign, + ...cannedMgmt, + ...chatlist, + ...components, + ...contact, + ...contactFilters, + ...conversation, + ...csatMgmt, + ...customRole, + ...datePicker, + ...emoji, + ...general, + ...generalSettings, + ...helpCenter, + ...inbox, + ...inboxMgmt, + ...integrationApps, + ...integrations, + ...labelsMgmt, + ...login, + ...macros, + ...report, + ...resetPassword, + ...search, + ...setNewPassword, + ...settings, + ...signup, + ...sla, + ...teamsSettings, + ...whatsappTemplates, +}; diff --git a/app/javascript/dashboard/i18n/locale/bg/index.js b/app/javascript/dashboard/i18n/locale/bg/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/bg/index.js +++ b/app/javascript/dashboard/i18n/locale/bg/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/ca/index.js b/app/javascript/dashboard/i18n/locale/ca/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/ca/index.js +++ b/app/javascript/dashboard/i18n/locale/ca/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/cs/index.js b/app/javascript/dashboard/i18n/locale/cs/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/cs/index.js +++ b/app/javascript/dashboard/i18n/locale/cs/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/da/index.js b/app/javascript/dashboard/i18n/locale/da/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/da/index.js +++ b/app/javascript/dashboard/i18n/locale/da/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/de/index.js b/app/javascript/dashboard/i18n/locale/de/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/de/index.js +++ b/app/javascript/dashboard/i18n/locale/de/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/el/index.js b/app/javascript/dashboard/i18n/locale/el/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/el/index.js +++ b/app/javascript/dashboard/i18n/locale/el/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/en/index.js b/app/javascript/dashboard/i18n/locale/en/index.js index 1700a3850..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/en/index.js +++ b/app/javascript/dashboard/i18n/locale/en/index.js @@ -1,4 +1,3 @@ -import components from './components.json'; import advancedFilters from './advancedFilters.json'; import agentBots from './agentBots.json'; import agentMgmt from './agentMgmt.json'; @@ -9,6 +8,7 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; @@ -37,7 +37,6 @@ import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; export default { - ...components, ...advancedFilters, ...agentBots, ...agentMgmt, @@ -48,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -70,8 +74,4 @@ export default { ...sla, ...teamsSettings, ...whatsappTemplates, - ...inbox, - ...general, - ...datePicker, - ...customRole, }; diff --git a/app/javascript/dashboard/i18n/locale/es/index.js b/app/javascript/dashboard/i18n/locale/es/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/es/index.js +++ b/app/javascript/dashboard/i18n/locale/es/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/fa/index.js b/app/javascript/dashboard/i18n/locale/fa/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/fa/index.js +++ b/app/javascript/dashboard/i18n/locale/fa/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/fi/index.js b/app/javascript/dashboard/i18n/locale/fi/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/fi/index.js +++ b/app/javascript/dashboard/i18n/locale/fi/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/fr/index.js b/app/javascript/dashboard/i18n/locale/fr/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/fr/index.js +++ b/app/javascript/dashboard/i18n/locale/fr/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/he/index.js b/app/javascript/dashboard/i18n/locale/he/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/he/index.js +++ b/app/javascript/dashboard/i18n/locale/he/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/hi/index.js b/app/javascript/dashboard/i18n/locale/hi/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/hi/index.js +++ b/app/javascript/dashboard/i18n/locale/hi/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/hr/index.js b/app/javascript/dashboard/i18n/locale/hr/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/hr/index.js +++ b/app/javascript/dashboard/i18n/locale/hr/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/hu/index.js b/app/javascript/dashboard/i18n/locale/hu/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/hu/index.js +++ b/app/javascript/dashboard/i18n/locale/hu/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/hy/index.js b/app/javascript/dashboard/i18n/locale/hy/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/hy/index.js +++ b/app/javascript/dashboard/i18n/locale/hy/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/id/index.js b/app/javascript/dashboard/i18n/locale/id/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/id/index.js +++ b/app/javascript/dashboard/i18n/locale/id/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/is/index.js b/app/javascript/dashboard/i18n/locale/is/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/is/index.js +++ b/app/javascript/dashboard/i18n/locale/is/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/it/index.js b/app/javascript/dashboard/i18n/locale/it/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/it/index.js +++ b/app/javascript/dashboard/i18n/locale/it/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/ja/index.js b/app/javascript/dashboard/i18n/locale/ja/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/ja/index.js +++ b/app/javascript/dashboard/i18n/locale/ja/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/ka/index.js b/app/javascript/dashboard/i18n/locale/ka/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/ka/index.js +++ b/app/javascript/dashboard/i18n/locale/ka/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/ko/index.js b/app/javascript/dashboard/i18n/locale/ko/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/ko/index.js +++ b/app/javascript/dashboard/i18n/locale/ko/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/lt/index.js b/app/javascript/dashboard/i18n/locale/lt/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/lt/index.js +++ b/app/javascript/dashboard/i18n/locale/lt/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/lv/index.js b/app/javascript/dashboard/i18n/locale/lv/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/lv/index.js +++ b/app/javascript/dashboard/i18n/locale/lv/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/ml/index.js b/app/javascript/dashboard/i18n/locale/ml/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/ml/index.js +++ b/app/javascript/dashboard/i18n/locale/ml/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/ms/index.js b/app/javascript/dashboard/i18n/locale/ms/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/ms/index.js +++ b/app/javascript/dashboard/i18n/locale/ms/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/ne/index.js b/app/javascript/dashboard/i18n/locale/ne/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/ne/index.js +++ b/app/javascript/dashboard/i18n/locale/ne/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/nl/index.js b/app/javascript/dashboard/i18n/locale/nl/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/nl/index.js +++ b/app/javascript/dashboard/i18n/locale/nl/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/no/index.js b/app/javascript/dashboard/i18n/locale/no/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/no/index.js +++ b/app/javascript/dashboard/i18n/locale/no/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/pl/index.js b/app/javascript/dashboard/i18n/locale/pl/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/pl/index.js +++ b/app/javascript/dashboard/i18n/locale/pl/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/pt/index.js b/app/javascript/dashboard/i18n/locale/pt/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/pt/index.js +++ b/app/javascript/dashboard/i18n/locale/pt/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/pt_BR/cannedMgmt.json b/app/javascript/dashboard/i18n/locale/pt_BR/cannedMgmt.json index d7eaf607d..6e62b5ee7 100644 --- a/app/javascript/dashboard/i18n/locale/pt_BR/cannedMgmt.json +++ b/app/javascript/dashboard/i18n/locale/pt_BR/cannedMgmt.json @@ -22,7 +22,7 @@ "CANCEL_BUTTON_TEXT": "Cancelar", "FORM": { "SHORT_CODE": { - "LABEL": "Respostas prontas", + "LABEL": "Atalho", "PLACEHOLDER": "Por favor, insira um atalho.", "ERROR": "O atalho é obrigatório." }, diff --git a/app/javascript/dashboard/i18n/locale/pt_BR/chatlist.json b/app/javascript/dashboard/i18n/locale/pt_BR/chatlist.json index e47ae16c0..5f4b16d1f 100644 --- a/app/javascript/dashboard/i18n/locale/pt_BR/chatlist.json +++ b/app/javascript/dashboard/i18n/locale/pt_BR/chatlist.json @@ -37,7 +37,7 @@ } }, "VIEW_FILTER": "Visualizar", - "SORT_TOOLTIP_LABEL": "Classificar conversas", + "SORT_TOOLTIP_LABEL": "Ordenar conversas", "CHAT_SORT": { "STATUS": "Situação", "ORDER_BY": "Ordenar por" @@ -105,7 +105,7 @@ } }, "CHAT_SORT_BY_FILTER": { - "TITLE": "Classificar conversas", + "TITLE": "Ordenar conversas", "DROPDOWN_TITLE": "Ordenar por", "ITEMS": { "LATEST": { diff --git a/app/javascript/dashboard/i18n/locale/pt_BR/contact.json b/app/javascript/dashboard/i18n/locale/pt_BR/contact.json index 998dd4f0c..e8bce3177 100644 --- a/app/javascript/dashboard/i18n/locale/pt_BR/contact.json +++ b/app/javascript/dashboard/i18n/locale/pt_BR/contact.json @@ -33,7 +33,7 @@ "LABEL_SELECT": { "TITLE": "Adicionar marcador", "PLACEHOLDER": "Pesquisar marcador ", - "NO_RESULT": "Nenhum rótulo encontrado", + "NO_RESULT": "Nenhuma etiqueta encontrada", "CREATE_LABEL": "Criar etiqueta" } }, @@ -53,8 +53,8 @@ } }, "EDIT_CONTACT": { - "BUTTON_LABEL": "Alterar Contato", - "TITLE": "Alterar contato", + "BUTTON_LABEL": "Editar Contato", + "TITLE": "Editar contato", "DESC": "Alterar detalhes do contato" }, "DELETE_CONTACT": { @@ -113,7 +113,7 @@ "PLACEHOLDER": "Digite o nome do país ", "LABEL": "Nome do País", "SELECT_PLACEHOLDER": "Selecionar", - "REMOVE": "Excluir", + "REMOVE": "Remover", "SELECT_COUNTRY": "Selecione o país" }, "CITY": { diff --git a/app/javascript/dashboard/i18n/locale/pt_BR/inbox.json b/app/javascript/dashboard/i18n/locale/pt_BR/inbox.json index 170e332ec..e3099a4ab 100644 --- a/app/javascript/dashboard/i18n/locale/pt_BR/inbox.json +++ b/app/javascript/dashboard/i18n/locale/pt_BR/inbox.json @@ -47,7 +47,7 @@ "DELETE": "Excluir", "MARK_ALL_READ": "Marcar todas como lidas", "DELETE_ALL": "Excluir todos", - "DELETE_ALL_READ": "Excluir todos os lidos" + "DELETE_ALL_READ": "Excluir todas as lidas" }, "DISPLAY_MENU": { "SORT": "Ordenar", @@ -60,8 +60,8 @@ "DISPLAY_OPTIONS": { "SNOOZED": "Adiado", "READ": "Lida", - "LABELS": "Marcadores", - "CONVERSATION_ID": "Conversas" + "LABELS": "Etiquetas", + "CONVERSATION_ID": "ID da conversa" } }, "ALERTS": { diff --git a/app/javascript/dashboard/i18n/locale/pt_BR/index.js b/app/javascript/dashboard/i18n/locale/pt_BR/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/pt_BR/index.js +++ b/app/javascript/dashboard/i18n/locale/pt_BR/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/pt_BR/integrations.json b/app/javascript/dashboard/i18n/locale/pt_BR/integrations.json index 79e42a64b..79334d9f7 100644 --- a/app/javascript/dashboard/i18n/locale/pt_BR/integrations.json +++ b/app/javascript/dashboard/i18n/locale/pt_BR/integrations.json @@ -307,10 +307,10 @@ "NAME": "Capitão", "COPILOT": { "SEND_MESSAGE": "Enviar mensagem...", - "LOADER": "Captain está pensando", + "LOADER": "Capitão está pensando", "YOU": "Você", "USE": "Use isto", - "RESET": "Reset" + "RESET": "Reiniciar" }, "PAYWALL": { "TITLE": "Atualize para usar o Capitão IA", diff --git a/app/javascript/dashboard/i18n/locale/ro/index.js b/app/javascript/dashboard/i18n/locale/ro/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/ro/index.js +++ b/app/javascript/dashboard/i18n/locale/ro/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/ru/index.js b/app/javascript/dashboard/i18n/locale/ru/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/ru/index.js +++ b/app/javascript/dashboard/i18n/locale/ru/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/sh/index.js b/app/javascript/dashboard/i18n/locale/sh/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/sh/index.js +++ b/app/javascript/dashboard/i18n/locale/sh/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/sk/index.js b/app/javascript/dashboard/i18n/locale/sk/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/sk/index.js +++ b/app/javascript/dashboard/i18n/locale/sk/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/sl/index.js b/app/javascript/dashboard/i18n/locale/sl/index.js new file mode 100644 index 000000000..213387d0c --- /dev/null +++ b/app/javascript/dashboard/i18n/locale/sl/index.js @@ -0,0 +1,77 @@ +import advancedFilters from './advancedFilters.json'; +import agentBots from './agentBots.json'; +import agentMgmt from './agentMgmt.json'; +import attributesMgmt from './attributesMgmt.json'; +import auditLogs from './auditLogs.json'; +import automation from './automation.json'; +import bulkActions from './bulkActions.json'; +import campaign from './campaign.json'; +import cannedMgmt from './cannedMgmt.json'; +import chatlist from './chatlist.json'; +import components from './components.json'; +import contact from './contact.json'; +import contactFilters from './contactFilters.json'; +import conversation from './conversation.json'; +import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; +import emoji from './emoji.json'; +import general from './general.json'; +import generalSettings from './generalSettings.json'; +import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; +import inboxMgmt from './inboxMgmt.json'; +import integrationApps from './integrationApps.json'; +import integrations from './integrations.json'; +import labelsMgmt from './labelsMgmt.json'; +import login from './login.json'; +import macros from './macros.json'; +import report from './report.json'; +import resetPassword from './resetPassword.json'; +import search from './search.json'; +import setNewPassword from './setNewPassword.json'; +import settings from './settings.json'; +import signup from './signup.json'; +import sla from './sla.json'; +import teamsSettings from './teamsSettings.json'; +import whatsappTemplates from './whatsappTemplates.json'; + +export default { + ...advancedFilters, + ...agentBots, + ...agentMgmt, + ...attributesMgmt, + ...auditLogs, + ...automation, + ...bulkActions, + ...campaign, + ...cannedMgmt, + ...chatlist, + ...components, + ...contact, + ...contactFilters, + ...conversation, + ...csatMgmt, + ...customRole, + ...datePicker, + ...emoji, + ...general, + ...generalSettings, + ...helpCenter, + ...inbox, + ...inboxMgmt, + ...integrationApps, + ...integrations, + ...labelsMgmt, + ...login, + ...macros, + ...report, + ...resetPassword, + ...search, + ...setNewPassword, + ...settings, + ...signup, + ...sla, + ...teamsSettings, + ...whatsappTemplates, +}; diff --git a/app/javascript/dashboard/i18n/locale/sq/index.js b/app/javascript/dashboard/i18n/locale/sq/index.js new file mode 100644 index 000000000..213387d0c --- /dev/null +++ b/app/javascript/dashboard/i18n/locale/sq/index.js @@ -0,0 +1,77 @@ +import advancedFilters from './advancedFilters.json'; +import agentBots from './agentBots.json'; +import agentMgmt from './agentMgmt.json'; +import attributesMgmt from './attributesMgmt.json'; +import auditLogs from './auditLogs.json'; +import automation from './automation.json'; +import bulkActions from './bulkActions.json'; +import campaign from './campaign.json'; +import cannedMgmt from './cannedMgmt.json'; +import chatlist from './chatlist.json'; +import components from './components.json'; +import contact from './contact.json'; +import contactFilters from './contactFilters.json'; +import conversation from './conversation.json'; +import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; +import emoji from './emoji.json'; +import general from './general.json'; +import generalSettings from './generalSettings.json'; +import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; +import inboxMgmt from './inboxMgmt.json'; +import integrationApps from './integrationApps.json'; +import integrations from './integrations.json'; +import labelsMgmt from './labelsMgmt.json'; +import login from './login.json'; +import macros from './macros.json'; +import report from './report.json'; +import resetPassword from './resetPassword.json'; +import search from './search.json'; +import setNewPassword from './setNewPassword.json'; +import settings from './settings.json'; +import signup from './signup.json'; +import sla from './sla.json'; +import teamsSettings from './teamsSettings.json'; +import whatsappTemplates from './whatsappTemplates.json'; + +export default { + ...advancedFilters, + ...agentBots, + ...agentMgmt, + ...attributesMgmt, + ...auditLogs, + ...automation, + ...bulkActions, + ...campaign, + ...cannedMgmt, + ...chatlist, + ...components, + ...contact, + ...contactFilters, + ...conversation, + ...csatMgmt, + ...customRole, + ...datePicker, + ...emoji, + ...general, + ...generalSettings, + ...helpCenter, + ...inbox, + ...inboxMgmt, + ...integrationApps, + ...integrations, + ...labelsMgmt, + ...login, + ...macros, + ...report, + ...resetPassword, + ...search, + ...setNewPassword, + ...settings, + ...signup, + ...sla, + ...teamsSettings, + ...whatsappTemplates, +}; diff --git a/app/javascript/dashboard/i18n/locale/sr/index.js b/app/javascript/dashboard/i18n/locale/sr/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/sr/index.js +++ b/app/javascript/dashboard/i18n/locale/sr/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/sv/index.js b/app/javascript/dashboard/i18n/locale/sv/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/sv/index.js +++ b/app/javascript/dashboard/i18n/locale/sv/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/ta/index.js b/app/javascript/dashboard/i18n/locale/ta/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/ta/index.js +++ b/app/javascript/dashboard/i18n/locale/ta/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/th/index.js b/app/javascript/dashboard/i18n/locale/th/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/th/index.js +++ b/app/javascript/dashboard/i18n/locale/th/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/tl/index.js b/app/javascript/dashboard/i18n/locale/tl/index.js new file mode 100644 index 000000000..213387d0c --- /dev/null +++ b/app/javascript/dashboard/i18n/locale/tl/index.js @@ -0,0 +1,77 @@ +import advancedFilters from './advancedFilters.json'; +import agentBots from './agentBots.json'; +import agentMgmt from './agentMgmt.json'; +import attributesMgmt from './attributesMgmt.json'; +import auditLogs from './auditLogs.json'; +import automation from './automation.json'; +import bulkActions from './bulkActions.json'; +import campaign from './campaign.json'; +import cannedMgmt from './cannedMgmt.json'; +import chatlist from './chatlist.json'; +import components from './components.json'; +import contact from './contact.json'; +import contactFilters from './contactFilters.json'; +import conversation from './conversation.json'; +import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; +import emoji from './emoji.json'; +import general from './general.json'; +import generalSettings from './generalSettings.json'; +import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; +import inboxMgmt from './inboxMgmt.json'; +import integrationApps from './integrationApps.json'; +import integrations from './integrations.json'; +import labelsMgmt from './labelsMgmt.json'; +import login from './login.json'; +import macros from './macros.json'; +import report from './report.json'; +import resetPassword from './resetPassword.json'; +import search from './search.json'; +import setNewPassword from './setNewPassword.json'; +import settings from './settings.json'; +import signup from './signup.json'; +import sla from './sla.json'; +import teamsSettings from './teamsSettings.json'; +import whatsappTemplates from './whatsappTemplates.json'; + +export default { + ...advancedFilters, + ...agentBots, + ...agentMgmt, + ...attributesMgmt, + ...auditLogs, + ...automation, + ...bulkActions, + ...campaign, + ...cannedMgmt, + ...chatlist, + ...components, + ...contact, + ...contactFilters, + ...conversation, + ...csatMgmt, + ...customRole, + ...datePicker, + ...emoji, + ...general, + ...generalSettings, + ...helpCenter, + ...inbox, + ...inboxMgmt, + ...integrationApps, + ...integrations, + ...labelsMgmt, + ...login, + ...macros, + ...report, + ...resetPassword, + ...search, + ...setNewPassword, + ...settings, + ...signup, + ...sla, + ...teamsSettings, + ...whatsappTemplates, +}; diff --git a/app/javascript/dashboard/i18n/locale/tr/index.js b/app/javascript/dashboard/i18n/locale/tr/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/tr/index.js +++ b/app/javascript/dashboard/i18n/locale/tr/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/uk/index.js b/app/javascript/dashboard/i18n/locale/uk/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/uk/index.js +++ b/app/javascript/dashboard/i18n/locale/uk/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/ur/index.js b/app/javascript/dashboard/i18n/locale/ur/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/ur/index.js +++ b/app/javascript/dashboard/i18n/locale/ur/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/ur_IN/index.js b/app/javascript/dashboard/i18n/locale/ur_IN/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/ur_IN/index.js +++ b/app/javascript/dashboard/i18n/locale/ur_IN/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/vi/index.js b/app/javascript/dashboard/i18n/locale/vi/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/vi/index.js +++ b/app/javascript/dashboard/i18n/locale/vi/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/zh/index.js b/app/javascript/dashboard/i18n/locale/zh/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/zh/index.js +++ b/app/javascript/dashboard/i18n/locale/zh/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/zh_CN/index.js b/app/javascript/dashboard/i18n/locale/zh_CN/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/zh_CN/index.js +++ b/app/javascript/dashboard/i18n/locale/zh_CN/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/app/javascript/dashboard/i18n/locale/zh_TW/index.js b/app/javascript/dashboard/i18n/locale/zh_TW/index.js index 434e50e1d..213387d0c 100644 --- a/app/javascript/dashboard/i18n/locale/zh_TW/index.js +++ b/app/javascript/dashboard/i18n/locale/zh_TW/index.js @@ -8,13 +8,18 @@ import bulkActions from './bulkActions.json'; import campaign from './campaign.json'; import cannedMgmt from './cannedMgmt.json'; import chatlist from './chatlist.json'; +import components from './components.json'; import contact from './contact.json'; import contactFilters from './contactFilters.json'; import conversation from './conversation.json'; import csatMgmt from './csatMgmt.json'; +import customRole from './customRole.json'; +import datePicker from './datePicker.json'; import emoji from './emoji.json'; +import general from './general.json'; import generalSettings from './generalSettings.json'; import helpCenter from './helpCenter.json'; +import inbox from './inbox.json'; import inboxMgmt from './inboxMgmt.json'; import integrationApps from './integrationApps.json'; import integrations from './integrations.json'; @@ -27,6 +32,7 @@ import search from './search.json'; import setNewPassword from './setNewPassword.json'; import settings from './settings.json'; import signup from './signup.json'; +import sla from './sla.json'; import teamsSettings from './teamsSettings.json'; import whatsappTemplates from './whatsappTemplates.json'; @@ -41,13 +47,18 @@ export default { ...campaign, ...cannedMgmt, ...chatlist, + ...components, ...contact, ...contactFilters, ...conversation, ...csatMgmt, + ...customRole, + ...datePicker, ...emoji, + ...general, ...generalSettings, ...helpCenter, + ...inbox, ...inboxMgmt, ...integrationApps, ...integrations, @@ -60,6 +71,7 @@ export default { ...setNewPassword, ...settings, ...signup, + ...sla, ...teamsSettings, ...whatsappTemplates, }; diff --git a/bin/sync_i18n_file_change b/bin/sync_i18n_file_change new file mode 100755 index 000000000..bcd2a9ef0 --- /dev/null +++ b/bin/sync_i18n_file_change @@ -0,0 +1,52 @@ +#!/bin/bash + +# Pre-commit hook to sync en/index.js to other locale folders +# Place this file in .git/hooks/pre-commit and make it executable + +# Colors for output +GREEN='\033[0;32m' +YELLOW='\033[1;33m' +NC='\033[0m' # No Color + +# Path to the source index.js file +SOURCE_FILE="app/javascript/dashboard/i18n/locale/en/index.js" + +# Check if en/index.js is among the staged files +STAGED_EN_INDEX=$(git diff --cached --name-only | grep "^app/javascript/dashboard/i18n/locale/en/index.js$") + +if [ -n "$STAGED_EN_INDEX" ]; then + echo -e "${YELLOW}Changes detected in en/index.js. Syncing to other locale folders...${NC}" + + # Check if source file exists + if [ ! -f "$SOURCE_FILE" ]; then + echo "Error: Source file $SOURCE_FILE not found" + exit 1 + fi + + # Keep track if any copies were made + COPIES_MADE=false + + # Loop through all directories in locales folder + for dir in app/javascript/dashboard/i18n/locale/*/; do + # Skip the 'en' directory since it's the source + if [ "$dir" != "app/javascript/dashboard/i18n/locale/en/" ]; then + # Copy the file + cp "$SOURCE_FILE" "$dir" + + # Stage the copied file + git add "${dir}index.js" + + echo "Copied and staged index.js to $dir" + COPIES_MADE=true + fi + done + + if [ "$COPIES_MADE" = true ]; then + echo -e "${GREEN}Successfully synced en/index.js to all locale folders${NC}" + else + echo "No other locale folders found to sync to" + fi +fi + +sleep 1 +# exit 0 diff --git a/config/locales/am.yml b/config/locales/am.yml index c81e4fef2..c7ea8a171 100644 --- a/config/locales/am.yml +++ b/config/locales/am.yml @@ -165,6 +165,7 @@ am: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} has muted the conversation' unmuted: '%{user_name} has unmuted the conversation' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} typically replies in a few hours.' ways_to_reach_you_message_body: 'Give the team a way to reach you.' diff --git a/config/locales/ar.yml b/config/locales/ar.yml index 7007749ae..869346c8d 100644 --- a/config/locales/ar.yml +++ b/config/locales/ar.yml @@ -165,6 +165,7 @@ ar: removed: '%{user_name} أزال سياسة مستوى الخدمة %{sla_name}' muted: '%{user_name} كتم صوت المحادثة' unmuted: '%{user_name} قام بإلغاء كتم المحادثة' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} يرد عادة خلال بضع ساعات.' ways_to_reach_you_message_body: 'زودنا بوسيلة للتواصل معك.' diff --git a/config/locales/az.yml b/config/locales/az.yml index 6b21175ea..6601310f6 100644 --- a/config/locales/az.yml +++ b/config/locales/az.yml @@ -165,6 +165,7 @@ az: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} has muted the conversation' unmuted: '%{user_name} has unmuted the conversation' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} typically replies in a few hours.' ways_to_reach_you_message_body: 'Give the team a way to reach you.' diff --git a/config/locales/bg.yml b/config/locales/bg.yml index 828eeb6c3..6ff3193e6 100644 --- a/config/locales/bg.yml +++ b/config/locales/bg.yml @@ -165,6 +165,7 @@ bg: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} has muted the conversation' unmuted: '%{user_name} has unmuted the conversation' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} typically replies in a few hours.' ways_to_reach_you_message_body: 'Give the team a way to reach you.' diff --git a/config/locales/ca.yml b/config/locales/ca.yml index 2db260209..1c1b6cee1 100644 --- a/config/locales/ca.yml +++ b/config/locales/ca.yml @@ -165,6 +165,7 @@ ca: removed: '%{user_name} ha eliminat la política de SLA %{sla_name}' muted: '%{user_name} ha silenciat la conversa' unmuted: '%{user_name} ha desactivat el silenci de la conversa' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} normalment respon a les poques hores.' ways_to_reach_you_message_body: 'Fes saber a l''equip la forma de posar-nos en contacte amb tu.' diff --git a/config/locales/cs.yml b/config/locales/cs.yml index ae53eba94..b94669586 100644 --- a/config/locales/cs.yml +++ b/config/locales/cs.yml @@ -165,6 +165,7 @@ cs: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} ztlumil/a konverzaci' unmuted: '%{user_name} has unmuted the conversation' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} typically replies in a few hours.' ways_to_reach_you_message_body: 'Dejte týmu způsob, jak se k vám dostat.' diff --git a/config/locales/da.yml b/config/locales/da.yml index fbbb1bcb2..603c0268c 100644 --- a/config/locales/da.yml +++ b/config/locales/da.yml @@ -165,6 +165,7 @@ da: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} har slukket for samtalen' unmuted: '%{user_name} har genaktiveret samtalen' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} svarer typisk på et par timer.' ways_to_reach_you_message_body: 'Giv teamet en måde at kontakte dig på.' diff --git a/config/locales/de.yml b/config/locales/de.yml index 8d891a4f5..142f31859 100644 --- a/config/locales/de.yml +++ b/config/locales/de.yml @@ -165,6 +165,7 @@ de: removed: '%{user_name} hat SLA-Richtlinie %{sla_name} entfernt' muted: '%{user_name} hat das Gespräch stumm geschaltet' unmuted: '%{user_name} hat das Gespräch laut gestellt' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} antwortet in der Regel in wenigen Stunden.' ways_to_reach_you_message_body: 'Geben Sie dem Team einen Weg, Sie zu erreichen.' diff --git a/config/locales/el.yml b/config/locales/el.yml index 2dcc7abef..3236f5272 100644 --- a/config/locales/el.yml +++ b/config/locales/el.yml @@ -165,6 +165,7 @@ el: removed: '%{user_name} removed SLA policy %{sla_name}' muted: 'Ο χρήστης %{user_name} σίγασε την συνομιλία' unmuted: 'Ο χρήστης %{user_name} επανάφερε από την σίγαση την συνομιλία' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: 'Στον λογαριασμό %{account_name} τυπικά έχετε απάντηση σε μερικές ώρες.' ways_to_reach_you_message_body: 'Δώστε στην ομάδα ένα τρόπο να φτάσει σε σας.' diff --git a/config/locales/es.yml b/config/locales/es.yml index 9b7721bf4..166524f28 100644 --- a/config/locales/es.yml +++ b/config/locales/es.yml @@ -165,6 +165,7 @@ es: removed: '%{user_name} eliminó la política de SLA %{sla_name}' muted: '%{user_name} ha silenciado la conversación' unmuted: '%{user_name} ha anulado el silenciado de la conversación' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} normalmente responde en unas pocas horas.' ways_to_reach_you_message_body: 'Dale al equipo una forma de llegar a ti.' diff --git a/config/locales/fa.yml b/config/locales/fa.yml index 1c5482ec3..6954ddf3e 100644 --- a/config/locales/fa.yml +++ b/config/locales/fa.yml @@ -165,6 +165,7 @@ fa: removed: '%{user_name} سیاست SLA %{sla_name} را حذف کرد' muted: '%{user_name} مکالمه را بی صدا کرد' unmuted: '%{user_name} مکالمه را از حالت بی صدا خراج کرد' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} معمولا ظرف مدت کوتاهی پاسخ می‌دهد.' ways_to_reach_you_message_body: 'راهی برای ارتباط گرفتن تیم با شما قرار دهید' diff --git a/config/locales/fi.yml b/config/locales/fi.yml index 66683cadc..4227c654a 100644 --- a/config/locales/fi.yml +++ b/config/locales/fi.yml @@ -165,6 +165,7 @@ fi: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} mykisti keskustelun' unmuted: '%{user_name} poisti keskustelun mykistyksen' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} vastaa tyypillisesti muutamassa tunnissa.' ways_to_reach_you_message_body: 'Anna tiimillemme tapa tavoittaa sinut.' diff --git a/config/locales/fr.yml b/config/locales/fr.yml index eca93b376..ce2db80a5 100644 --- a/config/locales/fr.yml +++ b/config/locales/fr.yml @@ -165,6 +165,7 @@ fr: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} a mis la conversation en sourdine' unmuted: '%{user_name} a rétabli le son de la conversation' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} répond généralement en quelques heures.' ways_to_reach_you_message_body: 'Donnez à l''équipe un moyen de vous recontacter.' diff --git a/config/locales/he.yml b/config/locales/he.yml index e23eafd8d..f794d5716 100644 --- a/config/locales/he.yml +++ b/config/locales/he.yml @@ -165,6 +165,7 @@ he: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} has muted the conversation' unmuted: '%{user_name} has unmuted the conversation' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} typically replies in a few hours.' ways_to_reach_you_message_body: '"תן לצוות דרך להגיע אליך".' diff --git a/config/locales/hi.yml b/config/locales/hi.yml index eb3b508b3..8c4db36c4 100644 --- a/config/locales/hi.yml +++ b/config/locales/hi.yml @@ -165,6 +165,7 @@ hi: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} has muted the conversation' unmuted: '%{user_name} has unmuted the conversation' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} typically replies in a few hours.' ways_to_reach_you_message_body: 'Give the team a way to reach you.' diff --git a/config/locales/hr.yml b/config/locales/hr.yml index 7fb3edd3b..340421661 100644 --- a/config/locales/hr.yml +++ b/config/locales/hr.yml @@ -165,6 +165,7 @@ hr: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} has muted the conversation' unmuted: '%{user_name} has unmuted the conversation' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} typically replies in a few hours.' ways_to_reach_you_message_body: 'Give the team a way to reach you.' diff --git a/config/locales/hu.yml b/config/locales/hu.yml index 64e10aa1c..915ef64fc 100644 --- a/config/locales/hu.yml +++ b/config/locales/hu.yml @@ -165,6 +165,7 @@ hu: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} elnémította a beszélgetést' unmuted: '%{user_name} kikapcsolta a beszélgetés elnémítását' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} általában néhány órán belül válaszol.' ways_to_reach_you_message_body: 'Adj egy elérhetőséget hogy megkereshessenek.' diff --git a/config/locales/hy.yml b/config/locales/hy.yml index ce4d588be..a3c2874df 100644 --- a/config/locales/hy.yml +++ b/config/locales/hy.yml @@ -165,6 +165,7 @@ hy: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} has muted the conversation' unmuted: '%{user_name} has unmuted the conversation' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} typically replies in a few hours.' ways_to_reach_you_message_body: 'Give the team a way to reach you.' diff --git a/config/locales/id.yml b/config/locales/id.yml index 1fdd832cd..4d554a31c 100644 --- a/config/locales/id.yml +++ b/config/locales/id.yml @@ -165,6 +165,7 @@ id: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} me-mute percakapan' unmuted: '%{user_name} telah un-mute percakapan' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} biasanya membalas dalam beberapa jam.' ways_to_reach_you_message_body: 'Beri tim cara untuk menghubungi Anda.' diff --git a/config/locales/is.yml b/config/locales/is.yml index 047b7b88b..40d63365d 100644 --- a/config/locales/is.yml +++ b/config/locales/is.yml @@ -165,6 +165,7 @@ is: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} has muted the conversation' unmuted: '%{user_name} has unmuted the conversation' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} svarar iðulega innan nokkura klukkustunda.' ways_to_reach_you_message_body: 'Give the team a way to reach you.' diff --git a/config/locales/it.yml b/config/locales/it.yml index b70afe98d..bbde04589 100644 --- a/config/locales/it.yml +++ b/config/locales/it.yml @@ -165,6 +165,7 @@ it: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} ha silenziato la conversazione' unmuted: '%{user_name} ha riattivato l''audio della conversazione' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name}, in genere, risponde in poche ore.' ways_to_reach_you_message_body: 'Offri al team un modo per raggiungerti.' diff --git a/config/locales/ja.yml b/config/locales/ja.yml index e1c480c77..37ce00de8 100644 --- a/config/locales/ja.yml +++ b/config/locales/ja.yml @@ -165,6 +165,7 @@ ja: removed: '%{user_name} がSLAポリシー "%{sla_name}" を削除しました' muted: '%{user_name} が会話をミュートしました' unmuted: '%{user_name} が会話のミュートを解除しました' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} は通常数時間以内に返信します。' ways_to_reach_you_message_body: 'ご連絡先をご入力ください。' diff --git a/config/locales/ka.yml b/config/locales/ka.yml index 51b332a61..980b7b161 100644 --- a/config/locales/ka.yml +++ b/config/locales/ka.yml @@ -165,6 +165,7 @@ ka: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} has muted the conversation' unmuted: '%{user_name} has unmuted the conversation' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} typically replies in a few hours.' ways_to_reach_you_message_body: 'Give the team a way to reach you.' diff --git a/config/locales/ko.yml b/config/locales/ko.yml index b283fe3b3..7e1156b68 100644 --- a/config/locales/ko.yml +++ b/config/locales/ko.yml @@ -165,6 +165,7 @@ ko: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} has muted the conversation' unmuted: '%{user_name} has unmuted the conversation' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} typically replies in a few hours.' ways_to_reach_you_message_body: '저희가 연락드릴 방법을 알려주세요.' diff --git a/config/locales/lt.yml b/config/locales/lt.yml index bc9f9d6e3..d073c0fc7 100644 --- a/config/locales/lt.yml +++ b/config/locales/lt.yml @@ -165,6 +165,7 @@ lt: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} nutildė pokalbį' unmuted: '%{user_name} įjungė pokalbio garsą' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} paprastai atsako per kelias valandas.' ways_to_reach_you_message_body: 'Suteikite komandai būdą, kaip su jumis susisiekti.' diff --git a/config/locales/lv.yml b/config/locales/lv.yml index a4f2ea3fb..084956d42 100644 --- a/config/locales/lv.yml +++ b/config/locales/lv.yml @@ -165,6 +165,7 @@ lv: removed: '%{user_name} noņēma SLA politiku %{sla_name}' muted: '%{user_name} izslēdza sarunu' unmuted: '%{user_name} ieslēdza sarunu' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} parasti atbild dažu stundu laikā.' ways_to_reach_you_message_body: 'Dodiet komandai iespēju ar jums sazināties.' diff --git a/config/locales/ml.yml b/config/locales/ml.yml index 224721d60..c1c7a4e3f 100644 --- a/config/locales/ml.yml +++ b/config/locales/ml.yml @@ -165,6 +165,7 @@ ml: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} has muted the conversation' unmuted: '%{user_name} has unmuted the conversation' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} സാധാരണ കുറച്ച് മണിക്കൂറിനുള്ളിൽ മറുപടി നൽകുന്നു.' ways_to_reach_you_message_body: 'നിങ്ങളിലേക്ക് എത്താൻ ടീമിന് ഒരു വഴി നൽകുക.' diff --git a/config/locales/ms.yml b/config/locales/ms.yml index bf488c918..4023cca51 100644 --- a/config/locales/ms.yml +++ b/config/locales/ms.yml @@ -165,6 +165,7 @@ ms: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} has muted the conversation' unmuted: '%{user_name} has unmuted the conversation' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} typically replies in a few hours.' ways_to_reach_you_message_body: 'Give the team a way to reach you.' diff --git a/config/locales/ne.yml b/config/locales/ne.yml index 7490658f9..8e4d45483 100644 --- a/config/locales/ne.yml +++ b/config/locales/ne.yml @@ -165,6 +165,7 @@ ne: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} has muted the conversation' unmuted: '%{user_name} has unmuted the conversation' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} typically replies in a few hours.' ways_to_reach_you_message_body: 'Give the team a way to reach you.' diff --git a/config/locales/nl.yml b/config/locales/nl.yml index f76c41196..2e73b8bd3 100644 --- a/config/locales/nl.yml +++ b/config/locales/nl.yml @@ -165,6 +165,7 @@ nl: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} has muted the conversation' unmuted: '%{user_name} has unmuted the conversation' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} reageert meestal binnen een paar uur.' ways_to_reach_you_message_body: 'Geef het team een manier om je te bereiken.' diff --git a/config/locales/no.yml b/config/locales/no.yml index 676a39663..52e3902e7 100644 --- a/config/locales/no.yml +++ b/config/locales/no.yml @@ -165,6 +165,7 @@ removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} har dempet samtalen' unmuted: '%{user_name} har opphevet dempingen av samtalen' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} svarer vanligvis innen et par timer.' ways_to_reach_you_message_body: 'Gi oss en måte å ta kontakt med deg på.' diff --git a/config/locales/pl.yml b/config/locales/pl.yml index 4ba973743..69dd0fc5a 100644 --- a/config/locales/pl.yml +++ b/config/locales/pl.yml @@ -165,6 +165,7 @@ pl: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} wyciszył/a rozmowę' unmuted: '%{user_name} cofnął wyciszenie rozmowy' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} zazwyczaj odpowiada w ciągu kilku godzin.' ways_to_reach_you_message_body: 'Daj zespołowi możliwość dotarcia do Ciebie.' diff --git a/config/locales/pt.yml b/config/locales/pt.yml index 512e9c3f2..c498a8deb 100644 --- a/config/locales/pt.yml +++ b/config/locales/pt.yml @@ -165,6 +165,7 @@ pt: removed: '%{user_name} removeu a política de SLA de %{sla_name}' muted: '%{user_name} bloqueou a conversa' unmuted: '%{user_name} reativou a conversa' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} normalmente responde em poucas horas.' ways_to_reach_you_message_body: 'Dê à equipe um jeito de contatá-lo.' diff --git a/config/locales/pt_BR.yml b/config/locales/pt_BR.yml index 172943755..30d0d141f 100644 --- a/config/locales/pt_BR.yml +++ b/config/locales/pt_BR.yml @@ -99,7 +99,7 @@ pt_BR: conversation_traffic_csv: timezone: Fuso horário sla_csv: - conversation_id: Conversas + conversation_id: ID da conversa sla_policy_breached: Política SLA assignee: Responsável team: Times @@ -165,6 +165,7 @@ pt_BR: removed: '%{user_name} removeu a política de SLA %{sla_name}' muted: '%{user_name} silenciou a conversa' unmuted: '%{user_name} reativou a conversa' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} normalmente responde em algumas horas.' ways_to_reach_you_message_body: 'Informe uma forma para entrarmos em contato com você.' diff --git a/config/locales/ro.yml b/config/locales/ro.yml index 119996271..ff5e7d032 100644 --- a/config/locales/ro.yml +++ b/config/locales/ro.yml @@ -165,6 +165,7 @@ ro: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} a dezactivat conversația' unmuted: '%{user_name} a activat conversația' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} răspunde de obicei în câteva ore.' ways_to_reach_you_message_body: 'Dă-i echipei o modalitate de a te contacta.' diff --git a/config/locales/ru.yml b/config/locales/ru.yml index f16141e3d..cf12f801d 100644 --- a/config/locales/ru.yml +++ b/config/locales/ru.yml @@ -165,6 +165,7 @@ ru: removed: '%{user_name} удалил политику SLA %{sla_name}' muted: '%{user_name} заглушил(а) этот разговор' unmuted: '%{user_name} включил(а) уведомления для разговора' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} как правило отвечает в течении несколько часов.' ways_to_reach_you_message_body: 'Оставьте ваш email для связи' diff --git a/config/locales/sh.yml b/config/locales/sh.yml index e165d8198..577146912 100644 --- a/config/locales/sh.yml +++ b/config/locales/sh.yml @@ -165,6 +165,7 @@ sh: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} has muted the conversation' unmuted: '%{user_name} has unmuted the conversation' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} typically replies in a few hours.' ways_to_reach_you_message_body: 'Give the team a way to reach you.' diff --git a/config/locales/sk.yml b/config/locales/sk.yml index ac93195ed..c211c4a5a 100644 --- a/config/locales/sk.yml +++ b/config/locales/sk.yml @@ -165,6 +165,7 @@ sk: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} stlmil konverzáciu' unmuted: '%{user_name} odtlmil konverzáciu' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} zvyčajne odpovedá do niekoľkých hodín.' ways_to_reach_you_message_body: 'Poskytnite tímu spôsob, ako sa s vami spojiť.' diff --git a/config/locales/sl.yml b/config/locales/sl.yml index ca91f1d4f..c622ce4ff 100644 --- a/config/locales/sl.yml +++ b/config/locales/sl.yml @@ -165,6 +165,7 @@ sl: removed: '%{user_name} je odstranil politiko SLA %{sla_name}' muted: '%{user_name} je utišal pogovor' unmuted: '%{user_name} je vklopil sporočila pogovora' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} običajno odgovori v nekaj urah.' ways_to_reach_you_message_body: 'Omogočite ekipi, da stopi v stik z vami.' diff --git a/config/locales/sq.yml b/config/locales/sq.yml index 79e243163..67a8034bb 100644 --- a/config/locales/sq.yml +++ b/config/locales/sq.yml @@ -165,6 +165,7 @@ sq: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} has muted the conversation' unmuted: '%{user_name} has unmuted the conversation' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} typically replies in a few hours.' ways_to_reach_you_message_body: 'Give the team a way to reach you.' diff --git a/config/locales/sr.yml b/config/locales/sr.yml index d4c1b5700..246c8a103 100644 --- a/config/locales/sr.yml +++ b/config/locales/sr.yml @@ -165,6 +165,7 @@ sr-Latn: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} je utišao razgovor' unmuted: '%{user_name} je uklonio utišanje razgovora' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} obično odgovara za nekoliko sati.' ways_to_reach_you_message_body: 'Pružite timu način da vas kontaktira.' diff --git a/config/locales/sv.yml b/config/locales/sv.yml index 743043f45..a437a6c9f 100644 --- a/config/locales/sv.yml +++ b/config/locales/sv.yml @@ -165,6 +165,7 @@ sv: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} har tystat konversationen' unmuted: '%{user_name} har avtystat konversationen' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} svarar vanligtvis inom några timmar.' ways_to_reach_you_message_body: 'Ge teamet ett sätt att nå dig.' diff --git a/config/locales/ta.yml b/config/locales/ta.yml index 40abf0354..3d8b775d9 100644 --- a/config/locales/ta.yml +++ b/config/locales/ta.yml @@ -165,6 +165,7 @@ ta: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} has muted the conversation' unmuted: '%{user_name} has unmuted the conversation' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} பொதுவாக சில மணிநேரங்களில் பதிலளிப்பார்.' ways_to_reach_you_message_body: 'உங்களை அடைய அணிக்கு ஒரு வழியைக் கொடுங்கள்.' diff --git a/config/locales/th.yml b/config/locales/th.yml index d4d6cbac2..ef04f4dba 100644 --- a/config/locales/th.yml +++ b/config/locales/th.yml @@ -165,6 +165,7 @@ th: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} has muted the conversation' unmuted: '%{user_name} has unmuted the conversation' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} typically replies in a few hours.' ways_to_reach_you_message_body: 'Give the team a way to reach you.' diff --git a/config/locales/tl.yml b/config/locales/tl.yml index 3e39cb709..5f246d546 100644 --- a/config/locales/tl.yml +++ b/config/locales/tl.yml @@ -165,6 +165,7 @@ tl: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} has muted the conversation' unmuted: '%{user_name} has unmuted the conversation' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} typically replies in a few hours.' ways_to_reach_you_message_body: 'Give the team a way to reach you.' diff --git a/config/locales/tr.yml b/config/locales/tr.yml index afa72604a..57a4dbd1f 100644 --- a/config/locales/tr.yml +++ b/config/locales/tr.yml @@ -165,6 +165,7 @@ tr: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name}, sohbeti sessize aldı' unmuted: '%{user_name} konuşmanın sesini açtı' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} genellikle birkaç saat içinde yanıt verir.' ways_to_reach_you_message_body: 'Ekibin size ulaşması için bir bilgi verin.' diff --git a/config/locales/uk.yml b/config/locales/uk.yml index 321b2d18d..687508a52 100644 --- a/config/locales/uk.yml +++ b/config/locales/uk.yml @@ -165,6 +165,7 @@ uk: removed: '%{user_name} видалив політику SLA %{sla_name}' muted: '%{user_name} включив безвучний режим' unmuted: '%{user_name} виключив безвучний режим' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} зазвичай відповідає за кілька годин.' ways_to_reach_you_message_body: 'Дайте команді можливість з вами зв''язатися.' diff --git a/config/locales/ur.yml b/config/locales/ur.yml index 5bcf1f080..771abb0b7 100644 --- a/config/locales/ur.yml +++ b/config/locales/ur.yml @@ -165,6 +165,7 @@ ur: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} has muted the conversation' unmuted: '%{user_name} has unmuted the conversation' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} typically replies in a few hours.' ways_to_reach_you_message_body: 'Give the team a way to reach you.' diff --git a/config/locales/ur_IN.yml b/config/locales/ur_IN.yml index 489208f38..dadbb2ba0 100644 --- a/config/locales/ur_IN.yml +++ b/config/locales/ur_IN.yml @@ -165,6 +165,7 @@ ur: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} has muted the conversation' unmuted: '%{user_name} has unmuted the conversation' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} typically replies in a few hours.' ways_to_reach_you_message_body: 'Give the team a way to reach you.' diff --git a/config/locales/vi.yml b/config/locales/vi.yml index 59422d56b..22054f141 100644 --- a/config/locales/vi.yml +++ b/config/locales/vi.yml @@ -165,6 +165,7 @@ vi: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} đã tắt tiếng hội thoại' unmuted: '%{user_name} đã bật tiếng cuộc trò chuyện' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} thường trả lời trong vài giờ.' ways_to_reach_you_message_body: 'Trong lúc chờ đội ngũ hỗ trợ phản hồi, bạn hãy để lại email để nhận được thông báo nhanh nhất nhé.' diff --git a/config/locales/zh_CN.yml b/config/locales/zh_CN.yml index edaea36e8..4c672e8a3 100644 --- a/config/locales/zh_CN.yml +++ b/config/locales/zh_CN.yml @@ -165,6 +165,7 @@ zh_CN: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} 已将会话静音' unmuted: '%{user_name} 已将会话取消静音' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} 通常在几小时内回复。' ways_to_reach_you_message_body: '给团队一个联系您的方法。' diff --git a/config/locales/zh_TW.yml b/config/locales/zh_TW.yml index 4f4dca827..f5648913b 100644 --- a/config/locales/zh_TW.yml +++ b/config/locales/zh_TW.yml @@ -165,6 +165,7 @@ zh_TW: removed: '%{user_name} removed SLA policy %{sla_name}' muted: '%{user_name} 已將對話靜音' unmuted: '%{user_name} 將對話解除靜音' + auto_resolution_message: 'Resolving the conversation as it has been inactive for a while. Please start a new conversation if you need further assistance.' templates: greeting_message_body: '%{account_name} 通常在幾小時內回覆' ways_to_reach_you_message_body: '給個聯繫方式讓團隊可以聯繫到您。' diff --git a/package.json b/package.json index 5e026a488..c23cfa5a9 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,8 @@ "size": "size-limit", "story:dev": "histoire dev", "story:build": "histoire build", - "story:preview": "histoire preview" + "story:preview": "histoire preview", + "sync:i18n": "bin/sync_i18n_file_change" }, "size-limit": [ { From 46c0198b6a2f59ae070612ec9acb5055e46ce77d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 12 Feb 2025 18:22:48 -0800 Subject: [PATCH 03/16] chore(deps): Bump rack from 2.2.10 to 2.2.11 (#10894) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [rack](https://github.com/rack/rack) from 2.2.10 to 2.2.11.
Changelog

Sourced from rack's changelog.

Changelog

All notable changes to this project will be documented in this file. For info on how to format all future additions to this file please reference Keep A Changelog.

Unreleased

Added

  • Introduce Rack::VERSION constant. (#2199, [@​ioquatix])
  • ISO-2022-JP encoded parts within MIME Multipart sections of an HTTP request body will now be converted to UTF-8. (#2245, [@​nappa])

Changed

Deprecated

  • Rack::Auth::AbstractRequest#request is deprecated without replacement. (#2229, [@​jeremyevans])
  • Rack::Request#parse_multipart (private method designed to be overridden in subclasses) is deprecated without replacement. (#2229, [@​jeremyevans])

Removed

Fixed

  • Rack::RewindableInput::Middleware no longer wraps a nil input. (#2259, @​tt)

[3.1.9] - 2025-01-31

Fixed

[3.1.8] - 2024-10-14

Fixed

[3.1.7] - 2024-07-11

Fixed

  • Do not remove escaped opening/closing quotes for content-disposition filenames. (#2229, [@​jeremyevans])
  • Fix encoding setting for non-binary IO-like objects in MockRequest#env_for. (#2227, [@​jeremyevans])
  • Rack::Response should not generate invalid content-length header. (#2219, [@​ioquatix])

... (truncated)

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=rack&package-manager=bundler&previous-version=2.2.10&new-version=2.2.11)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/chatwoot/chatwoot/network/alerts).
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index fa45d1e89..be31e028a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -565,7 +565,7 @@ GEM activesupport (>= 3.0.0) raabro (1.4.0) racc (1.8.1) - rack (2.2.10) + rack (2.2.11) rack-attack (6.7.0) rack (>= 1.0, < 4) rack-contrib (2.5.0) From 6e48e73e734e85f9ad60d5a7243bf5106d152f78 Mon Sep 17 00:00:00 2001 From: Pranav Date: Wed, 12 Feb 2025 22:14:04 -0800 Subject: [PATCH 04/16] fix: Initialize SDK along with emitter registration (#10896) Initialize the SDK along with the emitter registration to ensure accurate data reporting for analytics events. --- app/javascript/dashboard/helper/scriptHelpers.js | 1 + 1 file changed, 1 insertion(+) diff --git a/app/javascript/dashboard/helper/scriptHelpers.js b/app/javascript/dashboard/helper/scriptHelpers.js index 55ad6eb13..cb9bffbea 100644 --- a/app/javascript/dashboard/helper/scriptHelpers.js +++ b/app/javascript/dashboard/helper/scriptHelpers.js @@ -8,6 +8,7 @@ import DashboardAudioNotificationHelper from './AudioAlerts/DashboardAudioNotifi import { emitter } from 'shared/helpers/mitt'; export const initializeAnalyticsEvents = () => { + AnalyticsHelper.init(); emitter.on(ANALYTICS_IDENTITY, ({ user }) => { AnalyticsHelper.identify(user); }); From 5cb8645edba12e360dd72ced07cbb8dbf9242423 Mon Sep 17 00:00:00 2001 From: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> Date: Thu, 13 Feb 2025 17:26:05 +0530 Subject: [PATCH 05/16] feat: Ability to rearrange macros in sidebar (#10879) --- .../dashboard/conversation/Macros/List.vue | 140 +++++++++++------- .../conversation/Macros/MacroItem.vue | 131 ++++++++-------- .../conversation/Macros/MacroPreview.vue | 81 +++++----- 3 files changed, 183 insertions(+), 169 deletions(-) diff --git a/app/javascript/dashboard/routes/dashboard/conversation/Macros/List.vue b/app/javascript/dashboard/routes/dashboard/conversation/Macros/List.vue index 6cda0ff7f..5e734517e 100644 --- a/app/javascript/dashboard/routes/dashboard/conversation/Macros/List.vue +++ b/app/javascript/dashboard/routes/dashboard/conversation/Macros/List.vue @@ -1,83 +1,113 @@ - diff --git a/app/javascript/dashboard/routes/dashboard/conversation/Macros/MacroItem.vue b/app/javascript/dashboard/routes/dashboard/conversation/Macros/MacroItem.vue index daad9e42a..995e003bd 100644 --- a/app/javascript/dashboard/routes/dashboard/conversation/Macros/MacroItem.vue +++ b/app/javascript/dashboard/routes/dashboard/conversation/Macros/MacroItem.vue @@ -1,75 +1,78 @@ - - - diff --git a/app/javascript/dashboard/routes/dashboard/conversation/Macros/MacroPreview.vue b/app/javascript/dashboard/routes/dashboard/conversation/Macros/MacroPreview.vue index 38154dc98..ac0feadd1 100644 --- a/app/javascript/dashboard/routes/dashboard/conversation/Macros/MacroPreview.vue +++ b/app/javascript/dashboard/routes/dashboard/conversation/Macros/MacroPreview.vue @@ -1,57 +1,48 @@ -