diff --git a/app/javascript/dashboard/i18n/locale/en/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/en/inboxMgmt.json index a168e82f0..f887ecb87 100644 --- a/app/javascript/dashboard/i18n/locale/en/inboxMgmt.json +++ b/app/javascript/dashboard/i18n/locale/en/inboxMgmt.json @@ -2,6 +2,7 @@ "INBOX_MGMT": { "HEADER": "Inboxes", "SIDEBAR_TXT": "

Inbox

When you connect a website or a facebook Page to Chatwoot, it is called an Inbox. You can have unlimited inboxes in your Chatwoot account.

Click on Add Inbox to connect a website or a Facebook Page.

In the Dashboard, you can see all the conversations from all your inboxes in a single place and respond to them under the `Conversations` tab.

You can also see conversations specific to an inbox by clicking on the inbox name on the left pane of the dashboard.

", + "RECONNECTION_REQUIRED": "Your inbox is disconnected, you will not receive any new messages. Click here to reconnect.", "LIST": { "404": "There are no inboxes attached to this account." }, @@ -736,4 +737,4 @@ "OTHER_PROVIDERS": "Other Providers" } } -} +} \ No newline at end of file diff --git a/app/javascript/dashboard/routes/dashboard/settings/inbox/Settings.vue b/app/javascript/dashboard/routes/dashboard/settings/inbox/Settings.vue index 8823e593f..eb9108232 100644 --- a/app/javascript/dashboard/routes/dashboard/settings/inbox/Settings.vue +++ b/app/javascript/dashboard/routes/dashboard/settings/inbox/Settings.vue @@ -21,6 +21,11 @@ + +
{{ $t('INBOX_MGMT.FEATURES.LABEL') }} -
+
-
+
-
+
-
+
+defineProps({ + actionUrl: { + type: String, + required: true, + }, +}); + + +