-
diff --git a/app/javascript/dashboard/helper/inbox.js b/app/javascript/dashboard/helper/inbox.js
index ca880a79b..501375ab7 100644
--- a/app/javascript/dashboard/helper/inbox.js
+++ b/app/javascript/dashboard/helper/inbox.js
@@ -139,14 +139,14 @@ export const getInboxClassByType = (type, phoneNumber) => {
}
};
-export const getInboxIconByType = (type, phoneNumber, variant = 'fill') => {
+export const getInboxIconByType = (type, medium, variant = 'fill') => {
const iconMap =
variant === 'fill' ? INBOX_ICON_MAP_FILL : INBOX_ICON_MAP_LINE;
const defaultIcon =
variant === 'fill' ? DEFAULT_ICON_FILL : DEFAULT_ICON_LINE;
// Special case for Twilio (whatsapp and sms)
- if (type === INBOX_TYPES.TWILIO && phoneNumber?.startsWith('whatsapp')) {
+ if (type === INBOX_TYPES.TWILIO && medium === 'whatsapp') {
return iconMap[INBOX_TYPES.WHATSAPP];
}
diff --git a/app/javascript/dashboard/helper/specs/inbox.spec.js b/app/javascript/dashboard/helper/specs/inbox.spec.js
index 0d5625603..76ce96fc8 100644
--- a/app/javascript/dashboard/helper/specs/inbox.spec.js
+++ b/app/javascript/dashboard/helper/specs/inbox.spec.js
@@ -112,13 +112,13 @@ describe('#Inbox Helpers', () => {
describe('Twilio cases', () => {
describe('fill variant', () => {
it('returns WhatsApp icon for Twilio WhatsApp number', () => {
- expect(
- getInboxIconByType(INBOX_TYPES.TWILIO, 'whatsapp:+1234567890')
- ).toBe('i-ri-whatsapp-fill');
+ expect(getInboxIconByType(INBOX_TYPES.TWILIO, 'whatsapp')).toBe(
+ 'i-ri-whatsapp-fill'
+ );
});
it('returns SMS icon for regular Twilio number', () => {
- expect(getInboxIconByType(INBOX_TYPES.TWILIO, '+1234567890')).toBe(
+ expect(getInboxIconByType(INBOX_TYPES.TWILIO, 'sms')).toBe(
'i-ri-chat-1-fill'
);
});
@@ -133,18 +133,14 @@ describe('#Inbox Helpers', () => {
describe('line variant', () => {
it('returns WhatsApp line icon for Twilio WhatsApp number', () => {
expect(
- getInboxIconByType(
- INBOX_TYPES.TWILIO,
- 'whatsapp:+1234567890',
- 'line'
- )
+ getInboxIconByType(INBOX_TYPES.TWILIO, 'whatsapp', 'line')
).toBe('i-ri-whatsapp-line');
});
it('returns SMS line icon for regular Twilio number', () => {
- expect(
- getInboxIconByType(INBOX_TYPES.TWILIO, '+1234567890', 'line')
- ).toBe('i-ri-chat-1-line');
+ expect(getInboxIconByType(INBOX_TYPES.TWILIO, 'sms', 'line')).toBe(
+ 'i-ri-chat-1-line'
+ );
});
});
});
diff --git a/app/javascript/dashboard/i18n/locale/am/conversation.json b/app/javascript/dashboard/i18n/locale/am/conversation.json
index 5b3b7f3f8..308f24f51 100644
--- a/app/javascript/dashboard/i18n/locale/am/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/am/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Loading agents...",
"ASSIGN_TEAM": "Assign team",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Conversation id {conversationId} assigned to \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/am/helpCenter.json b/app/javascript/dashboard/i18n/locale/am/helpCenter.json
index f437b83d9..fd2b1a788 100644
--- a/app/javascript/dashboard/i18n/locale/am/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/am/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portal deleted successfully",
"DELETE_ERROR": "Error while deleting portal"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Portal home page link",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Custom domain",
"LABEL": "Custom domain:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Portal custom domain",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "Edit",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Live",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Custom domain",
"PLACEHOLDER": "Portal custom domain",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Send"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/am/inbox.json b/app/javascript/dashboard/i18n/locale/am/inbox.json
index a07bae4af..385e9e4ce 100644
--- a/app/javascript/dashboard/i18n/locale/am/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/am/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "All notifications marked as read",
"DELETE_ALL": "All notifications deleted",
"DELETE_ALL_READ": "All read notifications deleted"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/am/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/am/inboxMgmt.json
index 12580bcac..4006212a3 100644
--- a/app/javascript/dashboard/i18n/locale/am/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/am/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Update API Key",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Enter the new API Key here",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Update",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Connect",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Webhook Verification Token",
"WHATSAPP_WEBHOOK_SUBHEADER": "This token is used to verify the authenticity of the webhook endpoint.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/am/integrations.json b/app/javascript/dashboard/i18n/locale/am/integrations.json
index d9bf469c7..1614931a0 100644
--- a/app/javascript/dashboard/i18n/locale/am/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/am/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Delete"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Title",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Description",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Create",
+ "CANCEL": "Cancel"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Cancel",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/ar/conversation.json b/app/javascript/dashboard/i18n/locale/ar/conversation.json
index 21c7267cf..45a488aaf 100644
--- a/app/javascript/dashboard/i18n/locale/ar/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/ar/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "جاري جلب الوكلاء...",
"ASSIGN_TEAM": "تعيين فريق",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "معرف المحادثة {conversationId} تم تعيينه لـ \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/ar/generalSettings.json b/app/javascript/dashboard/i18n/locale/ar/generalSettings.json
index 1aaf03e4b..5616421fd 100644
--- a/app/javascript/dashboard/i18n/locale/ar/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/ar/generalSettings.json
@@ -29,7 +29,7 @@
"FAILURE": "Could not delete account, try again!",
"SCHEDULED_DELETION": {
"TITLE": "Account Scheduled for Deletion",
- "MESSAGE_MANUAL": "This account is scheduled for deletion on {deletionDate}. This was requested by an administrator. You can cancel the deletion before this date.",
+ "MESSAGE_MANUAL": "هذا الحساب مجدول للحذف بتاريخ {deletionDate}. تم طلبه من قبل المسؤول. يمكنك إلغاء الحذف قبل هذا التاريخ.",
"MESSAGE_INACTIVITY": "This account is scheduled for deletion on {deletionDate} due to account inactivity. You can cancel the deletion before this date.",
"CLEAR_BUTTON": "Cancel Scheduled Deletion"
}
diff --git a/app/javascript/dashboard/i18n/locale/ar/helpCenter.json b/app/javascript/dashboard/i18n/locale/ar/helpCenter.json
index 019ba02b4..8c1495aba 100644
--- a/app/javascript/dashboard/i18n/locale/ar/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/ar/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portal deleted successfully",
"DELETE_ERROR": "حدث خطأ أثناء حذف البوابة"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "رابط الصفحة الرئيسية للبوابة",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "نطاق مخصص",
"LABEL": "نطاق مخصص:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "نطاق البوابة المخصص",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "تعديل",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "مباشر",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "نطاق مخصص",
"PLACEHOLDER": "نطاق البوابة المخصص",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "إرسال"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/ar/inbox.json b/app/javascript/dashboard/i18n/locale/ar/inbox.json
index fe3de32c1..ffc8ed16b 100644
--- a/app/javascript/dashboard/i18n/locale/ar/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/ar/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "تم تحديد جميع الإشعارات كمقروءة",
"DELETE_ALL": "تم حذف كل الإشعارات",
"DELETE_ALL_READ": "تم حذف كل الإشعارات المقروءة"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/ar/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/ar/inboxMgmt.json
index c860f0a6f..05b9ab278 100644
--- a/app/javascript/dashboard/i18n/locale/ar/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/ar/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Update API Key",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Enter the new API Key here",
"WHATSAPP_SECTION_UPDATE_BUTTON": "تحديث",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "ربط الاتصال",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "رمز التحقق من Webhook",
"WHATSAPP_WEBHOOK_SUBHEADER": "This token is used to verify the authenticity of the webhook endpoint.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/ar/integrations.json b/app/javascript/dashboard/i18n/locale/ar/integrations.json
index 69c5b820b..f00d3fe1d 100644
--- a/app/javascript/dashboard/i18n/locale/ar/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/ar/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "حذف"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "العنوان",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "الوصف",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "إنشاء",
+ "CANCEL": "إلغاء"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "إلغاء",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/az/conversation.json b/app/javascript/dashboard/i18n/locale/az/conversation.json
index 5b3b7f3f8..308f24f51 100644
--- a/app/javascript/dashboard/i18n/locale/az/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/az/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Loading agents...",
"ASSIGN_TEAM": "Assign team",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Conversation id {conversationId} assigned to \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/az/helpCenter.json b/app/javascript/dashboard/i18n/locale/az/helpCenter.json
index f437b83d9..fd2b1a788 100644
--- a/app/javascript/dashboard/i18n/locale/az/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/az/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portal deleted successfully",
"DELETE_ERROR": "Error while deleting portal"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Portal home page link",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Custom domain",
"LABEL": "Custom domain:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Portal custom domain",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "Edit",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Live",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Custom domain",
"PLACEHOLDER": "Portal custom domain",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Send"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/az/inbox.json b/app/javascript/dashboard/i18n/locale/az/inbox.json
index a07bae4af..385e9e4ce 100644
--- a/app/javascript/dashboard/i18n/locale/az/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/az/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "All notifications marked as read",
"DELETE_ALL": "All notifications deleted",
"DELETE_ALL_READ": "All read notifications deleted"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/az/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/az/inboxMgmt.json
index 12580bcac..4006212a3 100644
--- a/app/javascript/dashboard/i18n/locale/az/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/az/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Update API Key",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Enter the new API Key here",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Update",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Connect",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Webhook Verification Token",
"WHATSAPP_WEBHOOK_SUBHEADER": "This token is used to verify the authenticity of the webhook endpoint.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/az/integrations.json b/app/javascript/dashboard/i18n/locale/az/integrations.json
index d9bf469c7..1614931a0 100644
--- a/app/javascript/dashboard/i18n/locale/az/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/az/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Delete"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Title",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Description",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Create",
+ "CANCEL": "Cancel"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Cancel",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/bg/conversation.json b/app/javascript/dashboard/i18n/locale/bg/conversation.json
index a2dbc8481..ec7189e4c 100644
--- a/app/javascript/dashboard/i18n/locale/bg/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/bg/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Loading agents...",
"ASSIGN_TEAM": "Assign team",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Conversation id {conversationId} assigned to \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/bg/helpCenter.json b/app/javascript/dashboard/i18n/locale/bg/helpCenter.json
index 1e4fd3244..3a6ee3cfe 100644
--- a/app/javascript/dashboard/i18n/locale/bg/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/bg/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portal deleted successfully",
"DELETE_ERROR": "Error while deleting portal"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Portal home page link",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Custom domain",
"LABEL": "Custom domain:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Portal custom domain",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "Редактирай",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Live",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Custom domain",
"PLACEHOLDER": "Portal custom domain",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Send"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/bg/inbox.json b/app/javascript/dashboard/i18n/locale/bg/inbox.json
index edc729481..8cdc2ab89 100644
--- a/app/javascript/dashboard/i18n/locale/bg/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/bg/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "All notifications marked as read",
"DELETE_ALL": "All notifications deleted",
"DELETE_ALL_READ": "All read notifications deleted"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/bg/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/bg/inboxMgmt.json
index 30fa620ff..3f41b6692 100644
--- a/app/javascript/dashboard/i18n/locale/bg/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/bg/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Update API Key",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Enter the new API Key here",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Обновяване",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Connect",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Webhook Verification Token",
"WHATSAPP_WEBHOOK_SUBHEADER": "This token is used to verify the authenticity of the webhook endpoint.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/bg/integrations.json b/app/javascript/dashboard/i18n/locale/bg/integrations.json
index d77d1e895..6bcd3b584 100644
--- a/app/javascript/dashboard/i18n/locale/bg/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/bg/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Изтрий"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Title",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Описание",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Create",
+ "CANCEL": "Отмени"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Отмени",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/ca/conversation.json b/app/javascript/dashboard/i18n/locale/ca/conversation.json
index 5da99cfa7..220cafc46 100644
--- a/app/javascript/dashboard/i18n/locale/ca/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/ca/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "S'estan carregant els agents...",
"ASSIGN_TEAM": "Assigna un equip",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Id de conversa {conversationId} assignat a \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/ca/helpCenter.json b/app/javascript/dashboard/i18n/locale/ca/helpCenter.json
index 6e25c12f9..fd66b6abd 100644
--- a/app/javascript/dashboard/i18n/locale/ca/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/ca/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portal esborrat correctament",
"DELETE_ERROR": "S'ha produït un error en suprimir el portal"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Enllaç a la pàgina d'inici del portal",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Domini personalitzat",
"LABEL": "Domini personalitzat:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Domini personalitzat del portal",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "Edita",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "En directe",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Domini personalitzat",
"PLACEHOLDER": "Domini personalitzat del portal",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Envia"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/ca/inbox.json b/app/javascript/dashboard/i18n/locale/ca/inbox.json
index 6601e9fd2..dfd9088ef 100644
--- a/app/javascript/dashboard/i18n/locale/ca/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/ca/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "Totes les notificacions s'han marcat com a llegides",
"DELETE_ALL": "S'han suprimit totes les notificacions",
"DELETE_ALL_READ": "S'han suprimit totes les notificacions de lectura"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/ca/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/ca/inboxMgmt.json
index 3a7961688..6ca31f720 100644
--- a/app/javascript/dashboard/i18n/locale/ca/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/ca/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Actualitza l'API Key",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Introdueix la nova clau de l'API aquí",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Actualitza",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Connectar",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Token de verificació del webhook",
"WHATSAPP_WEBHOOK_SUBHEADER": "Aquest testimoni s'utilitza per verificar l'autenticitat del punt final del webhook.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/ca/integrations.json b/app/javascript/dashboard/i18n/locale/ca/integrations.json
index 68e5f6994..4607a2fe1 100644
--- a/app/javascript/dashboard/i18n/locale/ca/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/ca/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Esborrar"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Títol",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Descripció",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Crear",
+ "CANCEL": "Cancel·la"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Cancel·la",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/cs/conversation.json b/app/javascript/dashboard/i18n/locale/cs/conversation.json
index b69100909..c9ab4282a 100644
--- a/app/javascript/dashboard/i18n/locale/cs/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/cs/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Načítání agentů...",
"ASSIGN_TEAM": "Přiřadit tým",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Konverzace id {conversationId} přiřazena \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/cs/helpCenter.json b/app/javascript/dashboard/i18n/locale/cs/helpCenter.json
index b776b0e26..a414a6773 100644
--- a/app/javascript/dashboard/i18n/locale/cs/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/cs/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portal deleted successfully",
"DELETE_ERROR": "Error while deleting portal"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Portal home page link",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Custom domain",
"LABEL": "Custom domain:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Portal custom domain",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "Upravit",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Live",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Custom domain",
"PLACEHOLDER": "Portal custom domain",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Poslat"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/cs/inbox.json b/app/javascript/dashboard/i18n/locale/cs/inbox.json
index 043f076d9..1160a5c86 100644
--- a/app/javascript/dashboard/i18n/locale/cs/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/cs/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "All notifications marked as read",
"DELETE_ALL": "All notifications deleted",
"DELETE_ALL_READ": "All read notifications deleted"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/cs/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/cs/inboxMgmt.json
index 8b0498ce5..7f3585287 100644
--- a/app/javascript/dashboard/i18n/locale/cs/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/cs/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Update API Key",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Enter the new API Key here",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Aktualizovat",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Connect",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Webhook Verification Token",
"WHATSAPP_WEBHOOK_SUBHEADER": "This token is used to verify the authenticity of the webhook endpoint.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/cs/integrations.json b/app/javascript/dashboard/i18n/locale/cs/integrations.json
index ca73fe90b..9b55bf386 100644
--- a/app/javascript/dashboard/i18n/locale/cs/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/cs/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Vymazat"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Title",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Description",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Create",
+ "CANCEL": "Zrušit"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Zrušit",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/da/conversation.json b/app/javascript/dashboard/i18n/locale/da/conversation.json
index ef8188307..54de51b46 100644
--- a/app/javascript/dashboard/i18n/locale/da/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/da/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Indlæser agenter...",
"ASSIGN_TEAM": "Tildel team",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Samtale id {conversationId} tildelt \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/da/helpCenter.json b/app/javascript/dashboard/i18n/locale/da/helpCenter.json
index ee3c6faf6..0d9d71d63 100644
--- a/app/javascript/dashboard/i18n/locale/da/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/da/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portal slettet",
"DELETE_ERROR": "Fejl under sletning af portal"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Link til portalens hjemmeside",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Snegl",
@@ -747,9 +753,15 @@
"HEADER": "Tilpasset domæne",
"LABEL": "Tilpasset domæne:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Portal brugerdefineret domæne",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "Rediger",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Levende",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Tilpasset domæne",
"PLACEHOLDER": "Portal brugerdefineret domæne",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Send"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/da/inbox.json b/app/javascript/dashboard/i18n/locale/da/inbox.json
index 901b703f1..bf34cc73a 100644
--- a/app/javascript/dashboard/i18n/locale/da/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/da/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "All notifications marked as read",
"DELETE_ALL": "All notifications deleted",
"DELETE_ALL_READ": "All read notifications deleted"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/da/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/da/inboxMgmt.json
index 579ee2f75..08105a3bd 100644
--- a/app/javascript/dashboard/i18n/locale/da/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/da/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Update API Key",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Enter the new API Key here",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Opdater",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Tilslut",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Webhook verifikations token",
"WHATSAPP_WEBHOOK_SUBHEADER": "This token is used to verify the authenticity of the webhook endpoint.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/da/integrations.json b/app/javascript/dashboard/i18n/locale/da/integrations.json
index 0a0e17d2b..8710dc6d8 100644
--- a/app/javascript/dashboard/i18n/locale/da/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/da/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Slet"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Titel",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Beskrivelse",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Opret",
+ "CANCEL": "Annuller"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Annuller",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/de/conversation.json b/app/javascript/dashboard/i18n/locale/de/conversation.json
index 3331fdff8..ca1e2033d 100644
--- a/app/javascript/dashboard/i18n/locale/de/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/de/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Agenten werden geladen...",
"ASSIGN_TEAM": "Team zuweisen",
"DELETE": "Unterhaltung löschen",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Konversations-ID {conversationId} zugewiesen zu \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/de/helpCenter.json b/app/javascript/dashboard/i18n/locale/de/helpCenter.json
index 1d6a40f70..6e94dd832 100644
--- a/app/javascript/dashboard/i18n/locale/de/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/de/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portal erfolgreich gelöscht",
"DELETE_ERROR": "Fehler beim Löschen des Portals"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Link zur Startseite des Portals",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Benutzerdefinierte Domain",
"LABEL": "Benutzerdefinierte Domain:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Benutzerdefinierte Domain des Portals",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "Bearbeiten",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Live",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Benutzerdefinierte Domain",
"PLACEHOLDER": "Benutzerdefinierte Domain des Portals",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Senden"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/de/inbox.json b/app/javascript/dashboard/i18n/locale/de/inbox.json
index f695ae27c..cf85c97f1 100644
--- a/app/javascript/dashboard/i18n/locale/de/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/de/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "Alle Benachrichtigungen als gelesen markiert",
"DELETE_ALL": "Alle Benachrichtigungen gelöscht",
"DELETE_ALL_READ": "Alle gelesenen Benachrichtigungen gelöscht"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/de/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/de/inboxMgmt.json
index 2c2eda452..26a8fa753 100644
--- a/app/javascript/dashboard/i18n/locale/de/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/de/inboxMgmt.json
@@ -47,8 +47,8 @@
"CREATE_INBOX": "Posteingang erstellen"
},
"INSTAGRAM": {
- "CONTINUE_WITH_INSTAGRAM": "Continue with Instagram",
- "CONNECT_YOUR_INSTAGRAM_PROFILE": "Connect your Instagram Profile",
+ "CONTINUE_WITH_INSTAGRAM": "Mit Instagram fortfahren",
+ "CONNECT_YOUR_INSTAGRAM_PROFILE": "Verbinde dein Instagram-Profil",
"HELP": "To add your Instagram profile as a channel, you need to authenticate your Instagram Profile by clicking on 'Continue with Instagram' ",
"ERROR_MESSAGE": "There was an error connecting to Instagram, please try again",
"ERROR_AUTH": "There was an error connecting to Instagram, please try again",
@@ -230,7 +230,7 @@
"360_DIALOG": "360Dialog"
},
"SELECT_PROVIDER": {
- "TITLE": "Select your API provider",
+ "TITLE": "Wähle deinen API-Provider",
"DESCRIPTION": "Choose your WhatsApp provider. You can connect directly through Meta which requires no setup, or connect through Twilio using your account credentials."
},
"INBOX_NAME": {
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "API-Schlüssel aktualisieren",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Neuen API-Schlüssel hier eingeben",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Aktualisieren",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Verbinden",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Webhook-Verifizierungstoken",
"WHATSAPP_WEBHOOK_SUBHEADER": "Mit diesem Token wird die Authentizität des Webhook Endpunktes überprüft.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/de/integrations.json b/app/javascript/dashboard/i18n/locale/de/integrations.json
index 0c8ba30e0..fb78159f9 100644
--- a/app/javascript/dashboard/i18n/locale/de/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/de/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Löschen"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Titel",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Beschreibung",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Erstellen",
+ "CANCEL": "Stornieren"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Stornieren",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/el/conversation.json b/app/javascript/dashboard/i18n/locale/el/conversation.json
index 849aa52f1..c68a26a96 100644
--- a/app/javascript/dashboard/i18n/locale/el/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/el/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Φόρτωση πρακτόρων...",
"ASSIGN_TEAM": "Ανάθεση ομάδας",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Η συνομιλία με αριθμό {conversationId} ανατέθηκε στον \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/el/helpCenter.json b/app/javascript/dashboard/i18n/locale/el/helpCenter.json
index 3c9d4f7bc..b7ddaf650 100644
--- a/app/javascript/dashboard/i18n/locale/el/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/el/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Η πύλη διαγράφηκε επιτυχώς",
"DELETE_ERROR": "Σφάλμα κατά τη διαγραφή της πύλης"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Σύνδεσμος αρχικής σελίδας πύλης",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Προσαρμοσμένο Domain",
"LABEL": "Προσαρμοσμένο Domain:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Προσαρμοσμένος τομέας πύλης",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "Επεξεργασία",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Ζωντανά",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Προσαρμοσμένο Domain",
"PLACEHOLDER": "Προσαρμοσμένος τομέας πύλης",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Αποστολή"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/el/inbox.json b/app/javascript/dashboard/i18n/locale/el/inbox.json
index fe8a8e319..e64a1429d 100644
--- a/app/javascript/dashboard/i18n/locale/el/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/el/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "All notifications marked as read",
"DELETE_ALL": "All notifications deleted",
"DELETE_ALL_READ": "All read notifications deleted"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/el/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/el/inboxMgmt.json
index 686b788f8..f53c3c19f 100644
--- a/app/javascript/dashboard/i18n/locale/el/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/el/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Update API Key",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Enter the new API Key here",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Ενημέρωση",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Σύνδεση",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Token Επαλήθευσης Webhook",
"WHATSAPP_WEBHOOK_SUBHEADER": "This token is used to verify the authenticity of the webhook endpoint.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/el/integrations.json b/app/javascript/dashboard/i18n/locale/el/integrations.json
index 5df1f34d2..599d1c7e2 100644
--- a/app/javascript/dashboard/i18n/locale/el/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/el/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Διαγραφή"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Τίτλος",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Περιγραφή",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Δημιουργία",
+ "CANCEL": "Άκυρο"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Άκυρο",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/en/integrations.json b/app/javascript/dashboard/i18n/locale/en/integrations.json
index 082d12e56..d1c5b0903 100644
--- a/app/javascript/dashboard/i18n/locale/en/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/en/integrations.json
@@ -469,7 +469,8 @@
"FEATURES": {
"TITLE": "Features",
"ALLOW_CONVERSATION_FAQS": "Generate FAQs from resolved conversations",
- "ALLOW_MEMORIES": "Capture key details as memories from customer interactions."
+ "ALLOW_MEMORIES": "Capture key details as memories from customer interactions.",
+ "ALLOW_CITATIONS": "Include source citations in responses"
}
},
"EDIT": {
diff --git a/app/javascript/dashboard/i18n/locale/es/conversation.json b/app/javascript/dashboard/i18n/locale/es/conversation.json
index 51cd0a1e0..851f237bb 100644
--- a/app/javascript/dashboard/i18n/locale/es/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/es/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Cargando agentes...",
"ASSIGN_TEAM": "Asignar equipo",
"DELETE": "Eliminar conversación",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "ID de conversación {conversationId} asignado a \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/es/helpCenter.json b/app/javascript/dashboard/i18n/locale/es/helpCenter.json
index 398b4c944..0a7039883 100644
--- a/app/javascript/dashboard/i18n/locale/es/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/es/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portal eliminado correctamente",
"DELETE_ERROR": "Error al eliminar el portal"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Enlace de página de inicio del portal",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Dominio personalizado",
"LABEL": "Dominio personalizado:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Dominio personalizado del portal",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "Editar",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "En vivo",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Dominio personalizado",
"PLACEHOLDER": "Dominio personalizado del portal",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Enviar"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/es/inbox.json b/app/javascript/dashboard/i18n/locale/es/inbox.json
index d76636c92..8f0937a9c 100644
--- a/app/javascript/dashboard/i18n/locale/es/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/es/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "Todas las notificaciones marcadas como leídas",
"DELETE_ALL": "Todas las notificaciones eliminadas",
"DELETE_ALL_READ": "Todas las notificaciones leídas eliminadas"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/es/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/es/inboxMgmt.json
index 848b7f3d3..750fa3a9b 100644
--- a/app/javascript/dashboard/i18n/locale/es/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/es/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Actualizar Clave API",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Introduzca aquí la nueva Clave API",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Actualizar",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Conectar",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Token de verificación del Webhook",
"WHATSAPP_WEBHOOK_SUBHEADER": "Este token se utiliza para verificar la autenticidad del extremo del webhook.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/es/integrations.json b/app/javascript/dashboard/i18n/locale/es/integrations.json
index 15cb41f33..fbf4754b8 100644
--- a/app/javascript/dashboard/i18n/locale/es/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/es/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Buscar..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Buscar..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Eliminar"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Título",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Descripción",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Crear",
+ "CANCEL": "Cancelar"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Cancelar",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Buscar..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/fa/conversation.json b/app/javascript/dashboard/i18n/locale/fa/conversation.json
index 07f540d3d..bc1afdefb 100644
--- a/app/javascript/dashboard/i18n/locale/fa/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/fa/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "بارگذاری اپراتور ها...",
"ASSIGN_TEAM": "تیم را تعیین کنید",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "شناسه مکالمه {conversationId} به \"{agentName}\" اختصاص داده شد",
diff --git a/app/javascript/dashboard/i18n/locale/fa/helpCenter.json b/app/javascript/dashboard/i18n/locale/fa/helpCenter.json
index d6159e581..244e35243 100644
--- a/app/javascript/dashboard/i18n/locale/fa/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/fa/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "پورتال با موفقیت حذف شد",
"DELETE_ERROR": "خطا هنگام حذف پورتال"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "پیوند صفحه اصلی پورتال",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "دامنه سفارشی",
"LABEL": "دامنه سفارشی:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "دامنه سفارشی پورتال",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "ویرایش",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "زنده",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "دامنه سفارشی",
"PLACEHOLDER": "دامنه سفارشی پورتال",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "ارسال"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/fa/inbox.json b/app/javascript/dashboard/i18n/locale/fa/inbox.json
index b8dea80bf..298efae8c 100644
--- a/app/javascript/dashboard/i18n/locale/fa/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/fa/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "ثبت همه اعلان ها به عنوان خوانده شده",
"DELETE_ALL": "حذف همه اعلان ها",
"DELETE_ALL_READ": "حذف همه اعلان های خوانده شده"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/fa/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/fa/inboxMgmt.json
index 356766d0a..c8070216e 100644
--- a/app/javascript/dashboard/i18n/locale/fa/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/fa/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "کلید API را به روز کنید",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "کلید API جدید را در اینجا وارد کنید",
"WHATSAPP_SECTION_UPDATE_BUTTON": "اعمال شود",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "اتصال",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "توکن تایید Webhook",
"WHATSAPP_WEBHOOK_SUBHEADER": "این توکن برای تأیید صحت نقطه پایانی webhook استفاده می شود.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/fa/integrations.json b/app/javascript/dashboard/i18n/locale/fa/integrations.json
index 2f2372518..15e4417d5 100644
--- a/app/javascript/dashboard/i18n/locale/fa/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/fa/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "حذف"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "عنوان",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "توضیحات",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "ايجاد كردن",
+ "CANCEL": "انصراف"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "انصراف",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/fi/conversation.json b/app/javascript/dashboard/i18n/locale/fi/conversation.json
index cf82a8ed5..0d18260ef 100644
--- a/app/javascript/dashboard/i18n/locale/fi/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/fi/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Loading agents...",
"ASSIGN_TEAM": "Assign team",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Conversation id {conversationId} assigned to \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/fi/helpCenter.json b/app/javascript/dashboard/i18n/locale/fi/helpCenter.json
index 2d4b4a482..af4621aea 100644
--- a/app/javascript/dashboard/i18n/locale/fi/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/fi/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portal deleted successfully",
"DELETE_ERROR": "Error while deleting portal"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Portal home page link",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Custom domain",
"LABEL": "Custom domain:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Portal custom domain",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "Muokkaa",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Live",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Custom domain",
"PLACEHOLDER": "Portal custom domain",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Lähetä"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/fi/inbox.json b/app/javascript/dashboard/i18n/locale/fi/inbox.json
index 223dd0bb5..468b2382b 100644
--- a/app/javascript/dashboard/i18n/locale/fi/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/fi/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "All notifications marked as read",
"DELETE_ALL": "All notifications deleted",
"DELETE_ALL_READ": "All read notifications deleted"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/fi/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/fi/inboxMgmt.json
index e12f895f4..d14c63f1b 100644
--- a/app/javascript/dashboard/i18n/locale/fi/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/fi/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Update API Key",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Enter the new API Key here",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Päivitä",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Yhdistä",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Webhook Verification Token",
"WHATSAPP_WEBHOOK_SUBHEADER": "This token is used to verify the authenticity of the webhook endpoint.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/fi/integrations.json b/app/javascript/dashboard/i18n/locale/fi/integrations.json
index 2ee266cdf..1374fba42 100644
--- a/app/javascript/dashboard/i18n/locale/fi/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/fi/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Poista"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Title",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Kuvaus",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Luo",
+ "CANCEL": "Peruuta"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Peruuta",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/fr/conversation.json b/app/javascript/dashboard/i18n/locale/fr/conversation.json
index 73f0ba7e6..e9057cb6e 100644
--- a/app/javascript/dashboard/i18n/locale/fr/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/fr/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Chargement des agents...",
"ASSIGN_TEAM": "Assigner une équipe",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Conversation id {conversationId} assignée à \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/fr/helpCenter.json b/app/javascript/dashboard/i18n/locale/fr/helpCenter.json
index af3ba4da2..fb49a6786 100644
--- a/app/javascript/dashboard/i18n/locale/fr/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/fr/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Le portail a été supprimé",
"DELETE_ERROR": "Erreur durant la suppression du portail"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Lien vers la page d'accueil du portail",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Domaine personnalisé",
"LABEL": "Domaine personnalisé:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Portail de domaine personnalisé",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "Modifier",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "En direct",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Domaine personnalisé",
"PLACEHOLDER": "Portail de domaine personnalisé",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Envoyer"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/fr/inbox.json b/app/javascript/dashboard/i18n/locale/fr/inbox.json
index 050ce5c98..9fead5e43 100644
--- a/app/javascript/dashboard/i18n/locale/fr/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/fr/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "Toutes les notifications sont marquées comme lues",
"DELETE_ALL": "Toutes les notifications sont supprimées",
"DELETE_ALL_READ": "Toutes les notifications lues ont été supprimées"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/fr/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/fr/inboxMgmt.json
index f5c21e5c5..85bec42c6 100644
--- a/app/javascript/dashboard/i18n/locale/fr/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/fr/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Mettre à jour la clé API",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Entrez la nouvelle clé API ici",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Mettre à jour",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Connecter",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Jeton de vérification du Webhook",
"WHATSAPP_WEBHOOK_SUBHEADER": "Ce jeton est utilisé pour vérifier l'authenticité du point de terminaison du webhook.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/fr/integrations.json b/app/javascript/dashboard/i18n/locale/fr/integrations.json
index 4dcb8c975..0ace6565e 100644
--- a/app/javascript/dashboard/i18n/locale/fr/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/fr/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Supprimer"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Titre",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Description",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Créer",
+ "CANCEL": "Annuler"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Annuler",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/he/agentBots.json b/app/javascript/dashboard/i18n/locale/he/agentBots.json
index 925836f35..4d1766160 100644
--- a/app/javascript/dashboard/i18n/locale/he/agentBots.json
+++ b/app/javascript/dashboard/i18n/locale/he/agentBots.json
@@ -2,13 +2,13 @@
"AGENT_BOTS": {
"HEADER": "בוטים",
"LOADING_EDITOR": "Loading editor...",
- "DESCRIPTION": "Agent Bots are like the most fabulous members of your team. They can handle the small stuff, so you can focus on the stuff that matters. Give them a try. You can manage your bots from this page or create new ones using the 'Add Bot' button.",
+ "DESCRIPTION": "בוטים של סוכנים הם כמו החברים הכי נפלאים בצוות שלכם. הם יכולים להתמודד עם הדברים הקטנים, כך שאתם יכולים להתמקד בדברים החשובים. נסו אותם. אתם יכולים לנהל את הבוטים שלכם מדף זה או ליצור חדשים באמצעות כפתור 'הוסף בוט'.",
"LEARN_MORE": "Learn about agent bots",
- "GLOBAL_BOT": "System bot",
+ "GLOBAL_BOT": "בוט מערכת",
"GLOBAL_BOT_BADGE": "System",
"AVATAR": {
- "SUCCESS_DELETE": "Bot avatar deleted successfully",
- "ERROR_DELETE": "Error deleting bot avatar, please try again"
+ "SUCCESS_DELETE": "בוט אווטר נמחק בהצלחה",
+ "ERROR_DELETE": "תקלה במחיקת בוט אווטר, יש לנסות שוב"
},
"BOT_CONFIGURATION": {
"TITLE": "בחר סוכן בוט",
@@ -22,7 +22,7 @@
"SELECT_PLACEHOLDER": "Select bot"
},
"ADD": {
- "TITLE": "Add Bot",
+ "TITLE": "הוסף בוט",
"CANCEL_BUTTON_TEXT": "ביטול",
"API": {
"SUCCESS_MESSAGE": "הבוט התווסף בהצלחה.",
diff --git a/app/javascript/dashboard/i18n/locale/he/conversation.json b/app/javascript/dashboard/i18n/locale/he/conversation.json
index 4f68f873b..866086a59 100644
--- a/app/javascript/dashboard/i18n/locale/he/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/he/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "טוען סוכנים...",
"ASSIGN_TEAM": "שייך צוות",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "מזהה שיחה {conversationId} קושר ל {agentName}",
diff --git a/app/javascript/dashboard/i18n/locale/he/helpCenter.json b/app/javascript/dashboard/i18n/locale/he/helpCenter.json
index c9edd76d5..6e3c181a9 100644
--- a/app/javascript/dashboard/i18n/locale/he/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/he/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "הפורטל נמחק בהצלחה",
"DELETE_ERROR": "שגיאה בעת מחיקת הפורטל"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "קישור לדף הבית של הפורטל",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "שבלול",
@@ -747,9 +753,15 @@
"HEADER": "תחום מותאם אישית",
"LABEL": "תחום מותאם אישית:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "דומיין מותאם אישית של פורטל",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "ערוך",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "לחיות",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "תחום מותאם אישית",
"PLACEHOLDER": "דומיין מותאם אישית של פורטל",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "שלח"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/he/inbox.json b/app/javascript/dashboard/i18n/locale/he/inbox.json
index ab0037e3e..706b00925 100644
--- a/app/javascript/dashboard/i18n/locale/he/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/he/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "All notifications marked as read",
"DELETE_ALL": "All notifications deleted",
"DELETE_ALL_READ": "All read notifications deleted"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/he/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/he/inboxMgmt.json
index 12724f7cc..7f4785f75 100644
--- a/app/javascript/dashboard/i18n/locale/he/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/he/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "עדכון מפתח API",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "הזן את מפתח ה-API החדש כאן",
"WHATSAPP_SECTION_UPDATE_BUTTON": "עדכן",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "התחבר",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "אסימון אימות Webhook",
"WHATSAPP_WEBHOOK_SUBHEADER": "This token is used to verify the authenticity of the webhook endpoint.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/he/integrations.json b/app/javascript/dashboard/i18n/locale/he/integrations.json
index 4a5c13a48..16058633b 100644
--- a/app/javascript/dashboard/i18n/locale/he/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/he/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "מחק"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "כותרת",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "תיאור",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "צור",
+ "CANCEL": "ביטול"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "ביטול",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/hi/campaign.json b/app/javascript/dashboard/i18n/locale/hi/campaign.json
index f029557e1..2582d37b2 100644
--- a/app/javascript/dashboard/i18n/locale/hi/campaign.json
+++ b/app/javascript/dashboard/i18n/locale/hi/campaign.json
@@ -138,11 +138,11 @@
}
},
"WHATSAPP": {
- "HEADER_TITLE": "WhatsApp campaigns",
+ "HEADER_TITLE": "WhatsApp अभियान",
"NEW_CAMPAIGN": "Create campaign",
"EMPTY_STATE": {
- "TITLE": "No WhatsApp campaigns are available",
- "SUBTITLE": "Launch a WhatsApp campaign to reach your customers directly. Send offers or make announcements with ease. Click 'Create campaign' to get started."
+ "TITLE": "कोई WhatsApp अभियान उपलब्ध नहीं है",
+ "SUBTITLE": "अपने ग्राहकों तक सीधे पहुँचने के लिए एक WhatsApp अभियान शुरू करें। आसानी से ऑफ़र भेजें या घोषणाएँ करें। शुरू करने के लिए 'अभियान बनाएँ' पर क्लिक करें।"
},
"CARD": {
"STATUS": {
@@ -155,7 +155,7 @@
}
},
"CREATE": {
- "TITLE": "Create WhatsApp campaign",
+ "TITLE": "WhatsApp अभियान बनाएं",
"CANCEL_BUTTON_TEXT": "Cancel",
"CREATE_BUTTON_TEXT": "Create",
"FORM": {
@@ -171,14 +171,14 @@
},
"TEMPLATE": {
"LABEL": "WhatsApp Template",
- "PLACEHOLDER": "Select a template",
- "INFO": "Select a template to use for this campaign.",
- "ERROR": "Template is required",
+ "PLACEHOLDER": "एक टेम्पलेट चुनें",
+ "INFO": "इस अभियान मे उपयोग करने के लिए टेम्पलेट चुनिए।",
+ "ERROR": "टेम्पलेट की अव्यश्कता है",
"PREVIEW_TITLE": "Process {templateName}",
"LANGUAGE": "Language",
"CATEGORY": "Category",
"VARIABLES_LABEL": "Variables",
- "VARIABLE_PLACEHOLDER": "Enter value for {variable}"
+ "VARIABLE_PLACEHOLDER": "{variable} के लिए मूल्य दर्ज करें"
},
"AUDIENCE": {
"LABEL": "Audience",
@@ -195,7 +195,7 @@
"CANCEL": "Cancel"
},
"API": {
- "SUCCESS_MESSAGE": "WhatsApp campaign created successfully",
+ "SUCCESS_MESSAGE": "WhatsApp अभियान सफलतापूर्वक बनाया गया",
"ERROR_MESSAGE": "There was an error. Please try again."
}
}
diff --git a/app/javascript/dashboard/i18n/locale/hi/conversation.json b/app/javascript/dashboard/i18n/locale/hi/conversation.json
index 5b3b7f3f8..308f24f51 100644
--- a/app/javascript/dashboard/i18n/locale/hi/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/hi/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Loading agents...",
"ASSIGN_TEAM": "Assign team",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Conversation id {conversationId} assigned to \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/hi/generalSettings.json b/app/javascript/dashboard/i18n/locale/hi/generalSettings.json
index d924bffbd..5f278fef9 100644
--- a/app/javascript/dashboard/i18n/locale/hi/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/hi/generalSettings.json
@@ -3,8 +3,8 @@
"LIMIT_MESSAGES": {
"CONVERSATION": "You have exceeded the conversation limit. Hacker plan allows only 500 conversations.",
"INBOXES": "You have exceeded the inbox limit. Hacker plan only supports website live-chat. Additional inboxes like email, WhatsApp etc. require a paid plan.",
- "AGENTS": "You have exceeded the agent limit. Your plan only allows {allowedAgents} agents.",
- "NON_ADMIN": "Please contact your administrator to upgrade the plan and continue using all features."
+ "AGENTS": "आप एजेंट लिमिट पार कर चुके है।आपका प्लान {allowedAgents} एजेंट्स की अनुमति देता है।",
+ "NON_ADMIN": "कृपया प्लान को अपग्रेड करने और सभी सुविधाओं का उपयोग जारी रखने के लिए अपने व्यवस्थापक से संपर्क करें।"
},
"TITLE": "Account settings",
"SUBMIT": "Update settings",
@@ -15,12 +15,12 @@
"SUCCESS": "Successfully updated account settings"
},
"ACCOUNT_DELETE_SECTION": {
- "TITLE": "Delete your Account",
- "NOTE": "Once you delete your account, all your data will be deleted.",
- "BUTTON_TEXT": "Delete Your Account",
+ "TITLE": "अपना खाता हटाएं",
+ "NOTE": "एक बार जब आप अपना खाता हटा देंगे, तो आपका सारा डेटा हटा दिया जाएगा।",
+ "BUTTON_TEXT": "अपना खाता हटाएं",
"CONFIRM": {
- "TITLE": "Delete Account",
- "MESSAGE": "Deleting your Account is irreversible. Enter your account name below to confirm you want to permanently delete it.",
+ "TITLE": "खाता हटाएं",
+ "MESSAGE": "आपका खाता हटाना अपरिवर्तनीय है। नीचे अपने खाते का नाम दर्ज करे ये पुष्टि करने के लिए की आप इसे निरंतर रूप से ख़त्म करना चाहते है।",
"BUTTON_TEXT": "Delete",
"DISMISS": "Cancel",
"PLACE_HOLDER": "Please type {accountName} to confirm"
diff --git a/app/javascript/dashboard/i18n/locale/hi/helpCenter.json b/app/javascript/dashboard/i18n/locale/hi/helpCenter.json
index 9c6ad374c..133d87369 100644
--- a/app/javascript/dashboard/i18n/locale/hi/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/hi/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portal deleted successfully",
"DELETE_ERROR": "Error while deleting portal"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Portal home page link",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Custom domain",
"LABEL": "Custom domain:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Portal custom domain",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "Edit",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Live",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Custom domain",
"PLACEHOLDER": "Portal custom domain",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Send"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/hi/inbox.json b/app/javascript/dashboard/i18n/locale/hi/inbox.json
index a07bae4af..385e9e4ce 100644
--- a/app/javascript/dashboard/i18n/locale/hi/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/hi/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "All notifications marked as read",
"DELETE_ALL": "All notifications deleted",
"DELETE_ALL_READ": "All read notifications deleted"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/hi/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/hi/inboxMgmt.json
index 57d6e2638..a19105738 100644
--- a/app/javascript/dashboard/i18n/locale/hi/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/hi/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Update API Key",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Enter the new API Key here",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Update",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Connect",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Webhook Verification Token",
"WHATSAPP_WEBHOOK_SUBHEADER": "This token is used to verify the authenticity of the webhook endpoint.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/hi/integrations.json b/app/javascript/dashboard/i18n/locale/hi/integrations.json
index 549060ea1..bbb1c6662 100644
--- a/app/javascript/dashboard/i18n/locale/hi/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/hi/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Delete"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Title",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Description",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Create",
+ "CANCEL": "Cancel"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Cancel",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/hr/conversation.json b/app/javascript/dashboard/i18n/locale/hr/conversation.json
index 755b22c5a..95bbd6f14 100644
--- a/app/javascript/dashboard/i18n/locale/hr/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/hr/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Loading agents...",
"ASSIGN_TEAM": "Assign team",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Conversation id {conversationId} assigned to \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/hr/helpCenter.json b/app/javascript/dashboard/i18n/locale/hr/helpCenter.json
index 24a78281c..68c6c40f1 100644
--- a/app/javascript/dashboard/i18n/locale/hr/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/hr/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portal deleted successfully",
"DELETE_ERROR": "Error while deleting portal"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Portal home page link",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Custom domain",
"LABEL": "Custom domain:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Portal custom domain",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "Uredi",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Live",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Custom domain",
"PLACEHOLDER": "Portal custom domain",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Send"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/hr/inbox.json b/app/javascript/dashboard/i18n/locale/hr/inbox.json
index 345a4cf85..32943b55e 100644
--- a/app/javascript/dashboard/i18n/locale/hr/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/hr/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "All notifications marked as read",
"DELETE_ALL": "All notifications deleted",
"DELETE_ALL_READ": "All read notifications deleted"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/hr/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/hr/inboxMgmt.json
index 09e1f475e..192ee849a 100644
--- a/app/javascript/dashboard/i18n/locale/hr/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/hr/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Update API Key",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Enter the new API Key here",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Update",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Connect",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Webhook Verification Token",
"WHATSAPP_WEBHOOK_SUBHEADER": "Ovaj token se koristi za verifikaciju autentičnosti webhook endpoint-a.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/hr/integrations.json b/app/javascript/dashboard/i18n/locale/hr/integrations.json
index 62fc3ae98..63f5370c1 100644
--- a/app/javascript/dashboard/i18n/locale/hr/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/hr/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Izbriši"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Title",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Description",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Create",
+ "CANCEL": "Odustani"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Odustani",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/hu/conversation.json b/app/javascript/dashboard/i18n/locale/hu/conversation.json
index 31137350e..21336a73e 100644
--- a/app/javascript/dashboard/i18n/locale/hu/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/hu/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Ügynökök betöltése...",
"ASSIGN_TEAM": "Csapat hozzárendelése",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Conversation id {conversationId} assigned to \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/hu/helpCenter.json b/app/javascript/dashboard/i18n/locale/hu/helpCenter.json
index 65b5155e4..dcd6d853c 100644
--- a/app/javascript/dashboard/i18n/locale/hu/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/hu/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portál sikeresen törölve",
"DELETE_ERROR": "Hiba a portál törlése közben"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Portál főoldal link",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Egyedi felhasználó",
"LABEL": "Egyedi felhasználó:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Portál egyedi domain",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "Szerkesztés",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Élő",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Egyedi felhasználó",
"PLACEHOLDER": "Portál egyedi domain",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Elküldés"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/hu/inbox.json b/app/javascript/dashboard/i18n/locale/hu/inbox.json
index 59d2a9801..af065fda8 100644
--- a/app/javascript/dashboard/i18n/locale/hu/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/hu/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "All notifications marked as read",
"DELETE_ALL": "All notifications deleted",
"DELETE_ALL_READ": "All read notifications deleted"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/hu/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/hu/inboxMgmt.json
index 76d49274d..b348a6903 100644
--- a/app/javascript/dashboard/i18n/locale/hu/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/hu/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "API-kulcs frissítése",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Add meg az új API kulcsot",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Frissítés",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Kapcsolódás",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Webhook Verification Token",
"WHATSAPP_WEBHOOK_SUBHEADER": "Ez a token a webhook-végpont hitelességének ellenőrzésére szolgál.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/hu/integrations.json b/app/javascript/dashboard/i18n/locale/hu/integrations.json
index 8d9c9885b..00196e987 100644
--- a/app/javascript/dashboard/i18n/locale/hu/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/hu/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Törlés"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Cím",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Leírás",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Létrehozás",
+ "CANCEL": "Mégse"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Mégse",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/hy/conversation.json b/app/javascript/dashboard/i18n/locale/hy/conversation.json
index 5b3b7f3f8..308f24f51 100644
--- a/app/javascript/dashboard/i18n/locale/hy/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/hy/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Loading agents...",
"ASSIGN_TEAM": "Assign team",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Conversation id {conversationId} assigned to \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/hy/helpCenter.json b/app/javascript/dashboard/i18n/locale/hy/helpCenter.json
index f437b83d9..fd2b1a788 100644
--- a/app/javascript/dashboard/i18n/locale/hy/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/hy/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portal deleted successfully",
"DELETE_ERROR": "Error while deleting portal"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Portal home page link",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Custom domain",
"LABEL": "Custom domain:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Portal custom domain",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "Edit",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Live",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Custom domain",
"PLACEHOLDER": "Portal custom domain",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Send"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/hy/inbox.json b/app/javascript/dashboard/i18n/locale/hy/inbox.json
index a07bae4af..385e9e4ce 100644
--- a/app/javascript/dashboard/i18n/locale/hy/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/hy/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "All notifications marked as read",
"DELETE_ALL": "All notifications deleted",
"DELETE_ALL_READ": "All read notifications deleted"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/hy/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/hy/inboxMgmt.json
index 09d6ca675..585e5c510 100644
--- a/app/javascript/dashboard/i18n/locale/hy/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/hy/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Update API Key",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Enter the new API Key here",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Update",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Connect",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Webhook Verification Token",
"WHATSAPP_WEBHOOK_SUBHEADER": "This token is used to verify the authenticity of the webhook endpoint.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/hy/integrations.json b/app/javascript/dashboard/i18n/locale/hy/integrations.json
index 722f0012f..68ce25b15 100644
--- a/app/javascript/dashboard/i18n/locale/hy/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/hy/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Delete"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Title",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Description",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Create",
+ "CANCEL": "Cancel"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Cancel",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/id/conversation.json b/app/javascript/dashboard/i18n/locale/id/conversation.json
index b8be52a53..3b5b1eaa4 100644
--- a/app/javascript/dashboard/i18n/locale/id/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/id/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Sedang memuat agen...",
"ASSIGN_TEAM": "Tugaskan tim",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Id percakapan {conversationId} ditugaskan ke \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/id/helpCenter.json b/app/javascript/dashboard/i18n/locale/id/helpCenter.json
index e5e37fc61..c063f8900 100644
--- a/app/javascript/dashboard/i18n/locale/id/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/id/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portal berhasil dihapus",
"DELETE_ERROR": "Terjadi kesalahan saat menghapus portal"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Tautan halaman utama portal",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Domain kustom",
"LABEL": "Domain kustom:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Domain kustom portal",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "Edit",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Langsung",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Domain kustom",
"PLACEHOLDER": "Domain kustom portal",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Kirim"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/id/inbox.json b/app/javascript/dashboard/i18n/locale/id/inbox.json
index ffca005c0..3ff74b9da 100644
--- a/app/javascript/dashboard/i18n/locale/id/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/id/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "All notifications marked as read",
"DELETE_ALL": "All notifications deleted",
"DELETE_ALL_READ": "All read notifications deleted"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/id/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/id/inboxMgmt.json
index d0c631673..2c0f9ba33 100644
--- a/app/javascript/dashboard/i18n/locale/id/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/id/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Perbarui Kunci API",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Masukkan Kunci API baru di sini",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Perbarui",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Sambungkan",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Token Verifikasi Webhook",
"WHATSAPP_WEBHOOK_SUBHEADER": "Token ini digunakan untuk memverifikasi keaslian titik akhir webhook.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/id/integrations.json b/app/javascript/dashboard/i18n/locale/id/integrations.json
index 04ac6efae..116557224 100644
--- a/app/javascript/dashboard/i18n/locale/id/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/id/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Hapus"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Judul",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Deskripsi",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Buat",
+ "CANCEL": "Batalkan"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Batalkan",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/is/conversation.json b/app/javascript/dashboard/i18n/locale/is/conversation.json
index b6e07c663..ba6ff5c9d 100644
--- a/app/javascript/dashboard/i18n/locale/is/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/is/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Loading agents...",
"ASSIGN_TEAM": "Assign team",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Samtalsauðkenni {conversationId} úthlutað á „{agentName}“",
diff --git a/app/javascript/dashboard/i18n/locale/is/helpCenter.json b/app/javascript/dashboard/i18n/locale/is/helpCenter.json
index 906df6021..02e72d4f9 100644
--- a/app/javascript/dashboard/i18n/locale/is/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/is/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portal deleted successfully",
"DELETE_ERROR": "Error while deleting portal"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Portal home page link",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Custom domain",
"LABEL": "Custom domain:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Portal custom domain",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "Breyta",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Live",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Custom domain",
"PLACEHOLDER": "Portal custom domain",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Send"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/is/inbox.json b/app/javascript/dashboard/i18n/locale/is/inbox.json
index 0ebfa8f99..116bb3c31 100644
--- a/app/javascript/dashboard/i18n/locale/is/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/is/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "All notifications marked as read",
"DELETE_ALL": "All notifications deleted",
"DELETE_ALL_READ": "All read notifications deleted"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/is/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/is/inboxMgmt.json
index 4e001a8b1..6521bbc3e 100644
--- a/app/javascript/dashboard/i18n/locale/is/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/is/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Update API Key",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Enter the new API Key here",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Uppfæra",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Connect",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Webhook Verification Token",
"WHATSAPP_WEBHOOK_SUBHEADER": "This token is used to verify the authenticity of the webhook endpoint.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/is/integrations.json b/app/javascript/dashboard/i18n/locale/is/integrations.json
index 364d1db32..d0df69b2d 100644
--- a/app/javascript/dashboard/i18n/locale/is/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/is/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Eyða"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Title",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Description",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Create",
+ "CANCEL": "Hætta við"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Hætta við",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/it/contact.json b/app/javascript/dashboard/i18n/locale/it/contact.json
index 4336852b7..7acdb3426 100644
--- a/app/javascript/dashboard/i18n/locale/it/contact.json
+++ b/app/javascript/dashboard/i18n/locale/it/contact.json
@@ -285,7 +285,7 @@
"HEADER": {
"TITLE": "Contatti",
"SEARCH_TITLE": "Search contacts",
- "ACTIVE_TITLE": "Active contacts",
+ "ACTIVE_TITLE": "Contatti attivi",
"SEARCH_PLACEHOLDER": "Search...",
"MESSAGE_BUTTON": "Messaggio",
"SEND_MESSAGE": "Invia messaggio",
@@ -460,8 +460,8 @@
}
},
"DELETE_CONTACT": {
- "MESSAGE": "This action is permanent and irreversible.",
- "BUTTON": "Delete now"
+ "MESSAGE": "Questa azione è permanente e irreversibile.",
+ "BUTTON": "Elimina ora"
}
},
"DETAILS": {
@@ -471,7 +471,7 @@
"DELETE_CONTACT": "Elimina contatto",
"DELETE_DIALOG": {
"TITLE": "Conferma eliminazione",
- "DESCRIPTION": "Are you sure you want to delete this contact?",
+ "DESCRIPTION": "Sei sicuro di voler eliminare questo contatto?",
"CONFIRM": "Sì, elimina",
"API": {
"SUCCESS_MESSAGE": "Contatto eliminato con successo",
@@ -550,8 +550,8 @@
"YOU": "You",
"SAVE": "Save note",
"EXPAND": "Expand",
- "COLLAPSE": "Collapse",
- "NO_NOTES": "No notes, you can add notes from the contact details page.",
+ "COLLAPSE": "Comprimi",
+ "NO_NOTES": "Nessuna nota, puoi aggiungere note dalla pagina dei dettagli del contatto.",
"EMPTY_STATE": "There are no notes associated to this contact. You can add a note by typing in the box above."
}
},
@@ -561,7 +561,7 @@
"BUTTON_LABEL": "Add contact",
"SEARCH_EMPTY_STATE_TITLE": "Nessun contatto corrisponde alla tua ricerca 🔍",
"LIST_EMPTY_STATE_TITLE": "No contacts available in this view 📋",
- "ACTIVE_EMPTY_STATE_TITLE": "No contacts are active at the moment 🌙"
+ "ACTIVE_EMPTY_STATE_TITLE": "Nessun contatto attivo al momento 🌙"
}
},
"COMPOSE_NEW_CONVERSATION": {
diff --git a/app/javascript/dashboard/i18n/locale/it/conversation.json b/app/javascript/dashboard/i18n/locale/it/conversation.json
index f5dc23388..5cf0c76e1 100644
--- a/app/javascript/dashboard/i18n/locale/it/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/it/conversation.json
@@ -32,12 +32,12 @@
"LOADING_CONVERSATIONS": "Caricamento conversazioni",
"CANNOT_REPLY": "Non puoi rispondere a causa di",
"24_HOURS_WINDOW": "Restrizione della finestra del messaggio a 24 ore",
- "API_HOURS_WINDOW": "You can only reply to this conversation within {hours} hours",
+ "API_HOURS_WINDOW": "Puoi rispondere a questa conversazione solo entro {hours} ore",
"NOT_ASSIGNED_TO_YOU": "Questa conversazione non è assegnata. Vuoi assegnare questa conversazione a te stesso?",
"ASSIGN_TO_ME": "Assegna a me",
"TWILIO_WHATSAPP_CAN_REPLY": "È possibile rispondere a questa conversazione solo utilizzando un messaggio modello a causa di",
"TWILIO_WHATSAPP_24_HOURS_WINDOW": "Restrizione della finestra del messaggio a 24 ore",
- "OLD_INSTAGRAM_INBOX_REPLY_BANNER": "This Instagram account was migrated to the new Instagram channel inbox. All new messages will show up there. You won’t be able to send messages from this conversation anymore.",
+ "OLD_INSTAGRAM_INBOX_REPLY_BANNER": "Questo account Instagram è stato migrato alla nuova casella di posta del canale Instagram. Tutti i nuovi messaggi verranno visualizzati lì. Non sarà più possibile inviare messaggi da questa conversazione.",
"REPLYING_TO": "Stai rispondendo a:",
"REMOVE_SELECTION": "Rimuovi selezione",
"DOWNLOAD": "Scarica",
@@ -70,7 +70,7 @@
"RESOLVE_ACTION": "Risolvi",
"REOPEN_ACTION": "Riapri",
"OPEN_ACTION": "Apri",
- "MORE_ACTIONS": "More actions",
+ "MORE_ACTIONS": "Altre azioni",
"OPEN": "Altro",
"CLOSE": "Chiudi",
"DETAILS": "Dettagli",
@@ -123,8 +123,8 @@
}
},
"DELETE_CONVERSATION": {
- "TITLE": "Delete conversation #{conversationId}",
- "DESCRIPTION": "Are you sure you want to delete this conversation?",
+ "TITLE": "Elimina conversazione #{conversationId}",
+ "DESCRIPTION": "Sei sicuro di voler eliminare questa conversazione?",
"CONFIRM": "Elimina"
},
"CARD_CONTEXT_MENU": {
@@ -143,7 +143,10 @@
"ASSIGN_LABEL": "Assegna etichetta",
"AGENTS_LOADING": "Caricamento agenti...",
"ASSIGN_TEAM": "Assegna team",
- "DELETE": "Delete conversation",
+ "DELETE": "Elimina conversazione",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "ID conversazione {conversationId} assegnato a \"{agentName}\"",
@@ -218,8 +221,8 @@
"ASSIGN_LABEL_SUCCESFUL": "Etichetta assegnata correttamente",
"ASSIGN_LABEL_FAILED": "Assegnazione etichetta non riuscita",
"CHANGE_TEAM": "Team conversazione cambiato",
- "SUCCESS_DELETE_CONVERSATION": "Conversation deleted successfully",
- "FAIL_DELETE_CONVERSATION": "Couldn't delete conversation! Try again",
+ "SUCCESS_DELETE_CONVERSATION": "Conversazione eliminata con successo",
+ "FAIL_DELETE_CONVERSATION": "Impossibile eliminare la conversazione! Riprova",
"FILE_SIZE_LIMIT": "Il file supera il limite di {MAXIMUM_SUPPORTED_FILE_UPLOAD_SIZE} MB per l'allegato",
"MESSAGE_ERROR": "Impossibile inviare questo messaggio, riprova più tardi",
"SENT_BY": "Inviato da:",
@@ -308,11 +311,11 @@
"CONVERSATION_ACTIONS": "Azioni conversazione",
"CONVERSATION_LABELS": "Etichette conversazione",
"CONVERSATION_INFO": "Informazioni conversazione",
- "CONTACT_NOTES": "Contact Notes",
+ "CONTACT_NOTES": "Note del Contatto",
"CONTACT_ATTRIBUTES": "Attributi contatti",
"PREVIOUS_CONVERSATION": "Conversazioni precedenti",
"MACROS": "Macros",
- "LINEAR_ISSUES": "Linked Linear Issues",
+ "LINEAR_ISSUES": "Collega con issue Linear",
"SHOPIFY_ORDERS": "Shopify Orders"
},
"SHOPIFY": {
diff --git a/app/javascript/dashboard/i18n/locale/it/generalSettings.json b/app/javascript/dashboard/i18n/locale/it/generalSettings.json
index 0ab832438..5ef08b256 100644
--- a/app/javascript/dashboard/i18n/locale/it/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/it/generalSettings.json
@@ -1,10 +1,10 @@
{
"GENERAL_SETTINGS": {
"LIMIT_MESSAGES": {
- "CONVERSATION": "You have exceeded the conversation limit. Hacker plan allows only 500 conversations.",
- "INBOXES": "You have exceeded the inbox limit. Hacker plan only supports website live-chat. Additional inboxes like email, WhatsApp etc. require a paid plan.",
- "AGENTS": "You have exceeded the agent limit. Your plan only allows {allowedAgents} agents.",
- "NON_ADMIN": "Please contact your administrator to upgrade the plan and continue using all features."
+ "CONVERSATION": "Hai superato il limite di conversazione. Il piano Hacker consente solo 500 conversazioni.",
+ "INBOXES": "Hai superato il limite della posta in arrivo. Il piano Hacker supporta solo la chat dal vivo del sito web. Ulteriori caselle di posta come e-mail, WhatsApp ecc. richiedono un piano a pagamento.",
+ "AGENTS": "Hai superato il limite dell'agente. Il tuo piano consente solo {allowedAgents} agenti.",
+ "NON_ADMIN": "Contatta l'amministratore per aggiornare il piano e continuare a utilizzare tutte le funzionalità."
},
"TITLE": "Impostazioni account",
"SUBMIT": "Aggiorna le impostazioni",
@@ -15,23 +15,23 @@
"SUCCESS": "Impostazioni account aggiornate con successo"
},
"ACCOUNT_DELETE_SECTION": {
- "TITLE": "Delete your Account",
- "NOTE": "Once you delete your account, all your data will be deleted.",
- "BUTTON_TEXT": "Delete Your Account",
+ "TITLE": "Elimina il tuo account",
+ "NOTE": "Una volta eliminato il tuo account, tutti i tuoi dati verranno eliminati.",
+ "BUTTON_TEXT": "Elimina il tuo account",
"CONFIRM": {
- "TITLE": "Delete Account",
- "MESSAGE": "Deleting your Account is irreversible. Enter your account name below to confirm you want to permanently delete it.",
+ "TITLE": "Elimina account",
+ "MESSAGE": "L'eliminazione del tuo account è irreversibile. Inserisci il nome del tuo account qui sotto per confermare che vuoi eliminarlo in modo permanente.",
"BUTTON_TEXT": "Elimina",
- "DISMISS": "annulla",
+ "DISMISS": "Annulla",
"PLACE_HOLDER": "Digita {accountName} per confermare"
},
- "SUCCESS": "Account marked for deletion",
- "FAILURE": "Could not delete account, try again!",
+ "SUCCESS": "Account contrassegnato per l'eliminazione",
+ "FAILURE": "Impossibile eliminare l'account, riprova!",
"SCHEDULED_DELETION": {
- "TITLE": "Account Scheduled for Deletion",
- "MESSAGE_MANUAL": "This account is scheduled for deletion on {deletionDate}. This was requested by an administrator. You can cancel the deletion before this date.",
- "MESSAGE_INACTIVITY": "This account is scheduled for deletion on {deletionDate} due to account inactivity. You can cancel the deletion before this date.",
- "CLEAR_BUTTON": "Cancel Scheduled Deletion"
+ "TITLE": "Account pianificato per l'eliminazione",
+ "MESSAGE_MANUAL": "Questo account è pianificato per la cancellazione il {deletionDate}. Questo è stato richiesto da un amministratore. Puoi annullare la cancellazione prima di questa data.",
+ "MESSAGE_INACTIVITY": "Questo account è programmato per la cancellazione il {deletionDate} a causa dell'inattività dell'account. Puoi annullare la cancellazione prima di questa data.",
+ "CLEAR_BUTTON": "Annulla eliminazione pianificata"
}
},
"FORM": {
@@ -45,32 +45,32 @@
"NOTE": "Questo ID è richiesto se si sta costruendo un'integrazione basata su API"
},
"AUTO_RESOLVE": {
- "TITLE": "Auto-resolve conversations",
- "NOTE": "This configuration would allow you to automatically resolve the conversation after a certain period of inactivity.",
+ "TITLE": "Risoluzione automatica delle conversazioni",
+ "NOTE": "Questa configurazione consente di risolvere automaticamente la conversazione dopo un certo periodo d'inattività.",
"DURATION": {
- "LABEL": "Inactivity duration",
- "HELP": "Time period of inactivity after which conversation is auto-resolved",
+ "LABEL": "Durata inattività",
+ "HELP": "Periodo d'inattività dopo il quale la conversazione è risolta automaticamente",
"PLACEHOLDER": "30",
- "ERROR": "Auto resolve duration should be between 10 minutes and 999 days",
+ "ERROR": "La durata della risoluzione automatica deve essere compresa tra 10 minuti e 999 giorni",
"API": {
- "SUCCESS": "Auto resolve settings updated successfully",
- "ERROR": "Failed to update auto resolve settings"
+ "SUCCESS": "Impostazioni di risoluzione automatica aggiornate con successo",
+ "ERROR": "Impossibile aggiornare le impostazioni di risoluzione automatica"
}
},
"MESSAGE": {
- "LABEL": "Custom auto-resolution message",
- "PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
- "HELP": "Message sent to the customer after conversation is auto-resolved"
+ "LABEL": "Messaggio di risoluzione automatica personalizzato",
+ "PLACEHOLDER": "La conversazione è stata contrassegnata come risolta dal sistema a causa di 15 giorni d'inattività",
+ "HELP": "Messaggio inviato al cliente dopo che la conversazione è stata risolta automaticamente"
},
"PREFERENCES": "Preferenze",
"LABEL": {
- "LABEL": "Add label after auto-resolution",
- "PLACEHOLDER": "Select a label"
+ "LABEL": "Aggiungi etichetta dopo la risoluzione automatica",
+ "PLACEHOLDER": "Seleziona un'etichetta"
},
"IGNORE_WAITING": {
- "LABEL": "Skip conversations waiting for agent’s reply"
+ "LABEL": "Salta le conversazioni in attesa di risposta dell'agente"
},
- "UPDATE_BUTTON": "Save Changes"
+ "UPDATE_BUTTON": "Salva modifiche"
},
"NAME": {
"LABEL": "Nome account",
@@ -93,30 +93,30 @@
"ERROR": ""
},
"AUTO_RESOLVE_IGNORE_WAITING": {
- "LABEL": "Exclude unattended conversations",
- "HELP": "When enabled, the system will skip resolving conversations that are still waiting for an agent's reply."
+ "LABEL": "Escludi conversazioni non partecipate",
+ "HELP": "Se abilitato, il sistema salterà la risoluzione delle conversazioni che sono ancora in attesa della risposta di un agente."
},
"AUDIO_TRANSCRIPTION": {
- "TITLE": "Transcribe Audio Messages",
- "NOTE": "Automatically transcribe audio messages in conversations. Generate a text transcript whenever an audio message is sent or received, and display it alongside the message.",
+ "TITLE": "Trascrizione Messaggi Audio",
+ "NOTE": "Trascrivere automaticamente i messaggi audio nelle conversazioni. Generare una trascrizione di testo ogni volta che un messaggio audio viene inviato o ricevuto, e visualizzarlo accanto al messaggio.",
"API": {
- "SUCCESS": "Audio transcription setting updated successfully",
- "ERROR": "Failed to update audio transcription setting"
+ "SUCCESS": "Impostazioni di trascrizione audio aggiornate con successo",
+ "ERROR": "Aggiornamento delle impostazioni di trascrizione audio non riuscito"
}
},
"AUTO_RESOLVE_DURATION": {
- "LABEL": "Inactivity duration for resolution",
- "HELP": "Duration after a conversation should auto resolve if there is no activity",
+ "LABEL": "Durata dell'inattività per la risoluzione",
+ "HELP": "Durata dopo la quale una conversazione si dovrebbe risolvere automaticamente se non c'è attività",
"PLACEHOLDER": "30",
- "ERROR": "Auto resolve duration should be between 10 minutes and 999 days",
+ "ERROR": "La durata della risoluzione automatica deve essere compresa tra 10 minuti e 999 giorni",
"API": {
- "SUCCESS": "Auto resolve settings updated successfully",
- "ERROR": "Failed to update auto resolve settings"
+ "SUCCESS": "Impostazioni di risoluzione automatica aggiornate con successo",
+ "ERROR": "Impossibile aggiornare le impostazioni di risoluzione automatica"
},
"UPDATE_BUTTON": "Aggiorna",
- "MESSAGE_LABEL": "Custom resolution message",
- "MESSAGE_PLACEHOLDER": "Conversation was marked resolved by system due to 15 days of inactivity",
- "MESSAGE_HELP": "This message is sent to the customer when a conversation is automatically resolved by the system due to inactivity."
+ "MESSAGE_LABEL": "Messaggio di risoluzione personalizzato",
+ "MESSAGE_PLACEHOLDER": "La conversazione è stata contrassegnata come risolta dal sistema a causa di 15 giorni d'inattività",
+ "MESSAGE_HELP": "Questo messaggio viene inviato al cliente quando una conversazione viene risolta automaticamente dal sistema a causa di inattività."
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "La continuità della conversazione con le email è abilitata per il tuo account.",
@@ -126,7 +126,7 @@
"UPDATE_CHATWOOT": "È disponibile un aggiornamento {latestChatwootVersion} per Chatwoot. Aggiorna la tua istanza.",
"LEARN_MORE": "Scopri di più",
"PAYMENT_PENDING": "Your payment is pending. Please update your payment information to continue using Chatwoot",
- "UPGRADE": "Upgrade to continue using Chatwoot",
+ "UPGRADE": "Aggiorna per continuare a usare Chatwoot",
"LIMITS_UPGRADE": "Your account has exceeded the usage limits, please upgrade your plan to continue using Chatwoot",
"OPEN_BILLING": "Open billing"
},
@@ -134,7 +134,7 @@
"MULTISELECT": {
"ENTER_TO_SELECT": "Premi Invio per selezionare",
"ENTER_TO_REMOVE": "Premi Invio per rimuovere",
- "NO_OPTIONS": "List is empty",
+ "NO_OPTIONS": "L'elenco è vuoto",
"SELECT_ONE": "Selezionane uno",
"SELECT": "Select"
}
diff --git a/app/javascript/dashboard/i18n/locale/it/helpCenter.json b/app/javascript/dashboard/i18n/locale/it/helpCenter.json
index b6b3ff5f8..9adeee19f 100644
--- a/app/javascript/dashboard/i18n/locale/it/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/it/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portale eliminato con successo",
"DELETE_ERROR": "Errore durante l'eliminazione del portale"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Link della pagina iniziale del portale",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Dominio personalizzato",
"LABEL": "Dominio personalizzato:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Dominio personalizzato del portale",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "Modifica",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Live",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Dominio personalizzato",
"PLACEHOLDER": "Dominio personalizzato del portale",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Invia"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/it/inbox.json b/app/javascript/dashboard/i18n/locale/it/inbox.json
index 2ed1b704a..5e570ff15 100644
--- a/app/javascript/dashboard/i18n/locale/it/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/it/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "All notifications marked as read",
"DELETE_ALL": "All notifications deleted",
"DELETE_ALL_READ": "All read notifications deleted"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Caricamento del Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/it/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/it/inboxMgmt.json
index 6d075169e..3cf0220c2 100644
--- a/app/javascript/dashboard/i18n/locale/it/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/it/inboxMgmt.json
@@ -47,13 +47,13 @@
"CREATE_INBOX": "Crea casella"
},
"INSTAGRAM": {
- "CONTINUE_WITH_INSTAGRAM": "Continue with Instagram",
- "CONNECT_YOUR_INSTAGRAM_PROFILE": "Connect your Instagram Profile",
- "HELP": "To add your Instagram profile as a channel, you need to authenticate your Instagram Profile by clicking on 'Continue with Instagram' ",
- "ERROR_MESSAGE": "There was an error connecting to Instagram, please try again",
- "ERROR_AUTH": "There was an error connecting to Instagram, please try again",
- "NEW_INBOX_SUGGESTION": "This Instagram account was previously linked to a different inbox and has now been migrated here. All new messages will appear here. The old inbox will no longer be able to send or receive messages for this account.",
- "DUPLICATE_INBOX_BANNER": "This Instagram account was migrated to the new Instagram channel inbox. You won’t be able to send/receive Instagram messages from this inbox anymore."
+ "CONTINUE_WITH_INSTAGRAM": "Continua con Instagram",
+ "CONNECT_YOUR_INSTAGRAM_PROFILE": "Collega il tuo profilo Instagram",
+ "HELP": "Per aggiungere il tuo profilo Instagram come canale, devi autenticare il tuo profilo Instagram cliccando su 'Continua con Instagram' ",
+ "ERROR_MESSAGE": "Si è verificato un errore nella connessione a Instagram, riprova",
+ "ERROR_AUTH": "Si è verificato un errore nella connessione a Instagram, riprova",
+ "NEW_INBOX_SUGGESTION": "Questo account Instagram era precedentemente collegato a una casella di posta diversa ed è stato ora migrato qui. Tutti i nuovi messaggi appariranno qui. La vecchia casella di posta non sarà più in grado d'inviare o ricevere messaggi per questo account.",
+ "DUPLICATE_INBOX_BANNER": "Questo account Instagram è stato migrato alla nuova posta in arrivo del canale Instagram. Non sarai più in grado di inviare/ricevere messaggi Instagram da questa posta in arrivo."
},
"TWITTER": {
"HELP": "Per aggiungere il tuo profilo Twitter come canale, devi autenticare il tuo profilo Twitter cliccando su 'Accedi con Twitter' ",
@@ -225,13 +225,13 @@
"WHATSAPP_EMBEDDED": "WhatsApp Business",
"TWILIO": "Twilio",
"WHATSAPP_CLOUD": "WhatsApp Cloud",
- "WHATSAPP_CLOUD_DESC": "Quick setup through Meta",
- "TWILIO_DESC": "Connect via Twilio credentials",
+ "WHATSAPP_CLOUD_DESC": "Configurazione rapida tramite Meta",
+ "TWILIO_DESC": "Connetti tramite credenziali Twilio",
"360_DIALOG": "360Dialog"
},
"SELECT_PROVIDER": {
- "TITLE": "Select your API provider",
- "DESCRIPTION": "Choose your WhatsApp provider. You can connect directly through Meta which requires no setup, or connect through Twilio using your account credentials."
+ "TITLE": "Seleziona il tuo API provider",
+ "DESCRIPTION": "Scegli il tuo provider WhatsApp. Puoi connetterti direttamente tramite Meta che non richiede alcuna configurazione o connetterti tramite Twilio utilizzando le credenziali del tuo account."
},
"INBOX_NAME": {
"LABEL": "Nome casella",
@@ -272,59 +272,64 @@
},
"SUBMIT_BUTTON": "Crea un canale WhatsApp",
"EMBEDDED_SIGNUP": {
- "TITLE": "Quick Setup with Meta",
- "DESC": "You will be redirected to Meta to log into your WhatsApp Business account. Having admin access will help make the setup smooth and easy.",
+ "TITLE": "Configurazione rapida con Meta",
+ "DESC": "Sarai reindirizzato a Meta per accedere al tuo account WhatsApp Business. Avere accesso amministratore aiuterà a rendere la configurazione semplice e facile.",
"BENEFITS": {
- "TITLE": "Benefits of Embedded Signup:",
- "EASY_SETUP": "No manual configuration required",
- "SECURE_AUTH": "Secure OAuth based authentication",
- "AUTO_CONFIG": "Automatic webhook and phone number configuration"
+ "TITLE": "Vantaggi della registrazione integrata:",
+ "EASY_SETUP": "Nessuna configurazione manuale richiesta",
+ "SECURE_AUTH": "Autenticazione sicura basata su OAuth",
+ "AUTO_CONFIG": "Configurazione automatica del webhook e del numero di telefono"
},
- "SUBMIT_BUTTON": "Connect with WhatsApp Business",
- "AUTH_PROCESSING": "Authenticating with Meta",
- "WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
- "PROCESSING": "Setting up your WhatsApp Business Account",
- "LOADING_SDK": "Loading Facebook SDK...",
- "CANCELLED": "WhatsApp Signup was cancelled",
- "SUCCESS_TITLE": "WhatsApp Business Account Connected!",
- "WAITING_FOR_AUTH": "Waiting for authentication...",
- "INVALID_BUSINESS_DATA": "Invalid business data received from Facebook. Please try again.",
- "SIGNUP_ERROR": "Signup error occurred",
- "AUTH_NOT_COMPLETED": "Authentication not completed. Please restart the process.",
- "SUCCESS_FALLBACK": "WhatsApp Business Account has been successfully configured"
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
+ "SUBMIT_BUTTON": "Connetti con WhatsApp Business",
+ "AUTH_PROCESSING": "Autenticazione con Meta",
+ "WAITING_FOR_BUSINESS_INFO": "Completa la configurazione aziendale nella finestra Meta...",
+ "PROCESSING": "Configurazione del tuo account WhatsApp Business",
+ "LOADING_SDK": "Caricamento del Facebook SDK...",
+ "CANCELLED": "Registrazione WhatsApp annullata",
+ "SUCCESS_TITLE": "Account WhatsApp Business connesso!",
+ "WAITING_FOR_AUTH": "In attesa dell'autenticazione...",
+ "INVALID_BUSINESS_DATA": "Dati aziendali non validi ricevuti da Facebook. Riprova.",
+ "SIGNUP_ERROR": "Errore di registrazione",
+ "AUTH_NOT_COMPLETED": "Autenticazione non completata. Riavvia il processo.",
+ "SUCCESS_FALLBACK": "Account WhatsApp Business è stato configurato con successo"
},
"API": {
"ERROR_MESSAGE": "Non siamo stati in grado di salvare il canale WhatsApp"
}
},
"VOICE": {
- "TITLE": "Voice Channel",
- "DESC": "Integrate Twilio Voice and start supporting your customers via phone calls.",
+ "TITLE": "Canale Vocale",
+ "DESC": "Integra Twilio Voice e inizia a supportare i tuoi clienti tramite telefonate.",
"PHONE_NUMBER": {
"LABEL": "Numero di telefono",
- "PLACEHOLDER": "Enter your phone number (e.g. +1234567890)",
- "ERROR": "Please provide a valid phone number in E.164 format (e.g. +1234567890)"
+ "PLACEHOLDER": "Inserisci il tuo numero di telefono (es. +1234567890)",
+ "ERROR": "Fornisci un numero di telefono valido in formato E.164 (ad es. +1234567890)"
},
"TWILIO": {
"ACCOUNT_SID": {
"LABEL": "SID dell'account",
- "PLACEHOLDER": "Enter your Twilio Account SID",
- "REQUIRED": "Account SID is required"
+ "PLACEHOLDER": "Inserisci il tuo Account SID Twilio",
+ "REQUIRED": "Account SID richiesto"
},
"AUTH_TOKEN": {
"LABEL": "Token di autenticazione",
- "PLACEHOLDER": "Enter your Twilio Auth Token",
- "REQUIRED": "Auth Token is required"
+ "PLACEHOLDER": "Inserisci il tuo Auth Token Twilio",
+ "REQUIRED": "Auth Token richiesto"
},
"API_KEY_SID": {
"LABEL": "API Key SID",
- "PLACEHOLDER": "Enter your Twilio API Key SID",
- "REQUIRED": "API Key SID is required"
+ "PLACEHOLDER": "Inserisci il tuo SID API Twilio",
+ "REQUIRED": "API Key SID richiesto"
},
"API_KEY_SECRET": {
"LABEL": "API Key Secret",
- "PLACEHOLDER": "Enter your Twilio API Key Secret",
- "REQUIRED": "API Key Secret is required"
+ "PLACEHOLDER": "Inserisci il tuo API Key Secret Twilio",
+ "REQUIRED": "API Key Secret richiesto"
},
"TWIML_APP_SID": {
"LABEL": "TwiML App SID",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Update API Key",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Enter the new API Key here",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Aggiorna",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Connetti",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Webhook Verification Token",
"WHATSAPP_WEBHOOK_SUBHEADER": "This token is used to verify the authenticity of the webhook endpoint.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/it/integrations.json b/app/javascript/dashboard/i18n/locale/it/integrations.json
index 7fc511642..0697ac873 100644
--- a/app/javascript/dashboard/i18n/locale/it/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/it/integrations.json
@@ -318,7 +318,7 @@
"SUCCESS": "Issue unlinked successfully",
"ERROR": "There was an error unlinking the issue, please try again"
},
- "NO_LINKED_ISSUES": "No linked issues found",
+ "NO_LINKED_ISSUES": "Nessuna issue collegato trovato",
"DELETE": {
"TITLE": "Are you sure you want to delete the integration?",
"MESSAGE": "Are you sure you want to delete the integration?",
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Elimina"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Titolo",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Descrizione",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Crea",
+ "CANCEL": "annulla"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "annulla",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/ja/conversation.json b/app/javascript/dashboard/i18n/locale/ja/conversation.json
index 76aff17c6..7e234c123 100644
--- a/app/javascript/dashboard/i18n/locale/ja/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/ja/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "エージェントを読み込む...",
"ASSIGN_TEAM": "チームを割り当てる",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "会話 ID {conversationId} が \"{agentName}\" に割り当てられました",
diff --git a/app/javascript/dashboard/i18n/locale/ja/helpCenter.json b/app/javascript/dashboard/i18n/locale/ja/helpCenter.json
index 1edb03b09..a9a135289 100644
--- a/app/javascript/dashboard/i18n/locale/ja/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/ja/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "ポータルが正常に削除されました",
"DELETE_ERROR": "ポータルの削除中にエラーが発生しました"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "ホームページリンク",
"PLACEHOLDER": "ポータルホームページリンク",
- "ERROR": "無効なURLです。ホームページリンクは「http://」または「https://」で始まる必要があります。"
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "スラッグ",
@@ -747,9 +753,15 @@
"HEADER": "カスタムドメイン",
"LABEL": "カスタムドメイン:",
"DESCRIPTION": "ポータルをカスタムドメインでホストできます。例えば、あなたのウェブサイトがyourdomain.comで、ポータルをdocs.yourdomain.comで利用したい場合、このフィールドに入力してください。",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "ポータルカスタムドメイン",
- "EDIT_BUTTON": "カスタムドメインを編集",
+ "EDIT_BUTTON": "編集",
"ADD_BUTTON": "カスタムドメインを追加",
+ "STATUS": {
+ "LIVE": "Live",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "カスタムドメインを追加",
"EDIT_HEADER": "カスタムドメインを編集",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "ドメインを更新",
"LABEL": "カスタムドメイン",
"PLACEHOLDER": "ポータルカスタムドメイン",
- "ERROR": "カスタムドメインは必須です"
+ "ERROR": "カスタムドメインは必須です",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS設定",
"DESCRIPTION": "DNSプロバイダーのアカウントにログインし、サブドメインのCNAMEレコードをchatwoot.helpにポイントするように追加してください。",
- "HELP_TEXT": "これが完了したら、自動生成されたSSL証明書のリクエストのためにサポートに連絡できます。",
- "CONFIRM_BUTTON_LABEL": "了解しました!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "送信"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/ja/inbox.json b/app/javascript/dashboard/i18n/locale/ja/inbox.json
index 3260841d4..ceec4e009 100644
--- a/app/javascript/dashboard/i18n/locale/ja/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/ja/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "すべての通知を既読にしました",
"DELETE_ALL": "すべての通知を削除しました",
"DELETE_ALL_READ": "すべての既読通知を削除しました"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/ja/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/ja/inboxMgmt.json
index af6125b41..837c73c13 100644
--- a/app/javascript/dashboard/i18n/locale/ja/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/ja/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "APIキーを更新する",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "ここに新しいAPIキーを入力してください",
"WHATSAPP_SECTION_UPDATE_BUTTON": "更新",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "接続",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Webhook検証トークン",
"WHATSAPP_WEBHOOK_SUBHEADER": "このトークンはWebhookエンドポイントの信頼性を検証するために使用されます。",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/ja/integrations.json b/app/javascript/dashboard/i18n/locale/ja/integrations.json
index 4f0a65c9b..d9b7442c5 100644
--- a/app/javascript/dashboard/i18n/locale/ja/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/ja/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "検索..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "検索..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "削除"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "タイトル",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "説明",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "作成",
+ "CANCEL": "キャンセル"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "キャンセル",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "検索..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/ka/conversation.json b/app/javascript/dashboard/i18n/locale/ka/conversation.json
index 5b3b7f3f8..308f24f51 100644
--- a/app/javascript/dashboard/i18n/locale/ka/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/ka/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Loading agents...",
"ASSIGN_TEAM": "Assign team",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Conversation id {conversationId} assigned to \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/ka/helpCenter.json b/app/javascript/dashboard/i18n/locale/ka/helpCenter.json
index f437b83d9..fd2b1a788 100644
--- a/app/javascript/dashboard/i18n/locale/ka/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/ka/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portal deleted successfully",
"DELETE_ERROR": "Error while deleting portal"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Portal home page link",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Custom domain",
"LABEL": "Custom domain:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Portal custom domain",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "Edit",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Live",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Custom domain",
"PLACEHOLDER": "Portal custom domain",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Send"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/ka/inbox.json b/app/javascript/dashboard/i18n/locale/ka/inbox.json
index a07bae4af..385e9e4ce 100644
--- a/app/javascript/dashboard/i18n/locale/ka/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/ka/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "All notifications marked as read",
"DELETE_ALL": "All notifications deleted",
"DELETE_ALL_READ": "All read notifications deleted"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/ka/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/ka/inboxMgmt.json
index 57d6e2638..a19105738 100644
--- a/app/javascript/dashboard/i18n/locale/ka/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/ka/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Update API Key",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Enter the new API Key here",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Update",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Connect",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Webhook Verification Token",
"WHATSAPP_WEBHOOK_SUBHEADER": "This token is used to verify the authenticity of the webhook endpoint.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/ka/integrations.json b/app/javascript/dashboard/i18n/locale/ka/integrations.json
index 722f0012f..68ce25b15 100644
--- a/app/javascript/dashboard/i18n/locale/ka/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/ka/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Delete"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Title",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Description",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Create",
+ "CANCEL": "Cancel"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Cancel",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/ko/conversation.json b/app/javascript/dashboard/i18n/locale/ko/conversation.json
index 610f3eaf4..aef2e04e1 100644
--- a/app/javascript/dashboard/i18n/locale/ko/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/ko/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Loading agents...",
"ASSIGN_TEAM": "Assign team",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Conversation id {conversationId} assigned to \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/ko/helpCenter.json b/app/javascript/dashboard/i18n/locale/ko/helpCenter.json
index 510dbe738..6c6057807 100644
--- a/app/javascript/dashboard/i18n/locale/ko/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/ko/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portal deleted successfully",
"DELETE_ERROR": "Error while deleting portal"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Portal home page link",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Custom domain",
"LABEL": "Custom domain:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Portal custom domain",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "수정",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Live",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Custom domain",
"PLACEHOLDER": "Portal custom domain",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "보내기"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/ko/inbox.json b/app/javascript/dashboard/i18n/locale/ko/inbox.json
index 62018f02c..dc5c04757 100644
--- a/app/javascript/dashboard/i18n/locale/ko/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/ko/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "All notifications marked as read",
"DELETE_ALL": "All notifications deleted",
"DELETE_ALL_READ": "All read notifications deleted"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/ko/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/ko/inboxMgmt.json
index 44438a260..277e39c0e 100644
--- a/app/javascript/dashboard/i18n/locale/ko/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/ko/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Update API Key",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Enter the new API Key here",
"WHATSAPP_SECTION_UPDATE_BUTTON": "업데이트",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "연결",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Webhook Verification Token",
"WHATSAPP_WEBHOOK_SUBHEADER": "This token is used to verify the authenticity of the webhook endpoint.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/ko/integrations.json b/app/javascript/dashboard/i18n/locale/ko/integrations.json
index 3abca198c..37335c120 100644
--- a/app/javascript/dashboard/i18n/locale/ko/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/ko/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "삭제"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Title",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "내용",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "만들기",
+ "CANCEL": "취소"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "취소",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/lt/conversation.json b/app/javascript/dashboard/i18n/locale/lt/conversation.json
index 1e1e8c5da..79e26b3ad 100644
--- a/app/javascript/dashboard/i18n/locale/lt/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/lt/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Agentai užkraunami...",
"ASSIGN_TEAM": "Priskirti komandą",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Pokalbis id {conversationId} priskirtas \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/lt/helpCenter.json b/app/javascript/dashboard/i18n/locale/lt/helpCenter.json
index 7df46ff2c..a90cecbdd 100644
--- a/app/javascript/dashboard/i18n/locale/lt/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/lt/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portalas ištrintas sėkmingai",
"DELETE_ERROR": "Trinant portalą įvyko klaida"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Portalo nuoroda į pagrindinį puslapį",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Personalizuotas domenas",
"LABEL": "Personalizuotas domenas:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Portalo personalizuotas domenas",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "Redaguoti",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Tiesiogiai",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Personalizuotas domenas",
"PLACEHOLDER": "Portalo personalizuotas domenas",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Siųsti"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/lt/inbox.json b/app/javascript/dashboard/i18n/locale/lt/inbox.json
index fcb501ca5..56ad7724b 100644
--- a/app/javascript/dashboard/i18n/locale/lt/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/lt/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "All notifications marked as read",
"DELETE_ALL": "All notifications deleted",
"DELETE_ALL_READ": "All read notifications deleted"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/lt/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/lt/inboxMgmt.json
index e229569ff..5aed6b37d 100644
--- a/app/javascript/dashboard/i18n/locale/lt/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/lt/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Atnaujinti API raktą",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Įveskite naują API Raktą čia",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Atnaujinti",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Sujungti",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Webhook Patikros Prieigos Raktas",
"WHATSAPP_WEBHOOK_SUBHEADER": "Šis prieigos raktas naudojamas „webhook“ galutinio taško autentiškumui patikrinti.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/lt/integrations.json b/app/javascript/dashboard/i18n/locale/lt/integrations.json
index ac53c7981..90bf8d22d 100644
--- a/app/javascript/dashboard/i18n/locale/lt/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/lt/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Ištrinti"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Pavadinimas",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Aprašymas",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Sukurti",
+ "CANCEL": "Atšaukti"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Atšaukti",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/lv/conversation.json b/app/javascript/dashboard/i18n/locale/lv/conversation.json
index 7181a6977..634821b17 100644
--- a/app/javascript/dashboard/i18n/locale/lv/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/lv/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Notiek aģentu ielāde...",
"ASSIGN_TEAM": "Piešķirt komandu",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Sarunas id {conversationId} piešķirts \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/lv/helpCenter.json b/app/javascript/dashboard/i18n/locale/lv/helpCenter.json
index 4e7f73e8b..3b76723e4 100644
--- a/app/javascript/dashboard/i18n/locale/lv/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/lv/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portāls veiksmīgi izdzēsts",
"DELETE_ERROR": "Dzēšot portālu, radās kļūda"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Mājas lapas saite",
"PLACEHOLDER": "Portāla mājaslapas saite",
- "ERROR": "Nederīgs URL. Sākumlapas saitei jāsākas ar “http://” vai “https://”."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Pielāgots domēns",
"LABEL": "Pielāgots domēns:",
"DESCRIPTION": "Jūs varat izvietot savu portālu pielāgotā domēnā. Piemēram, ja jūsu vietne ir yourdomain.com un vēlaties, lai jūsu portāls būtu pieejams vietnē docs.yourdomain.com, vienkārši ievadiet to šajā laukā.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Portāla pielāgots domēns",
- "EDIT_BUTTON": "Rediģēt pielāgoto domēnu",
+ "EDIT_BUTTON": "Rediģēt",
"ADD_BUTTON": "Pievienot pielāgoto domēnu",
+ "STATUS": {
+ "LIVE": "Tiešraide",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Pievienot pielāgoto domēnu",
"EDIT_HEADER": "Rediģēt pielāgoto domēnu",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Atjaunināt domēnu",
"LABEL": "Pielāgots domēns",
"PLACEHOLDER": "Portāla pielāgots domēns",
- "ERROR": "Nepieciešams pielāgots domēns"
+ "ERROR": "Nepieciešams pielāgots domēns",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS konfigurācija",
"DESCRIPTION": "Piesakieties sava DNS nodrošinātāja kontā un pievienojiet CNAME ierakstu apakšdomēnam, kas norāda uz chatwoot.help",
- "HELP_TEXT": "Kad tas ir izdarīts, varat sazināties ar mūsu atbalsta dienestu, lai pieprasītu automātiski ģenerētu SSL sertifikātu.",
- "CONFIRM_BUTTON_LABEL": "Sapratu!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Nosūtīt"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/lv/inbox.json b/app/javascript/dashboard/i18n/locale/lv/inbox.json
index 10059ff43..6c59d958e 100644
--- a/app/javascript/dashboard/i18n/locale/lv/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/lv/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "Visi paziņojumi ir atzīmēti kā lasīti",
"DELETE_ALL": "Visi paziņojumi izdzēsti",
"DELETE_ALL_READ": "Visi lasīšanas paziņojumi ir izdzēsti"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/lv/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/lv/inboxMgmt.json
index d1df5a94b..d7de66c22 100644
--- a/app/javascript/dashboard/i18n/locale/lv/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/lv/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Atjaunināt API atslēgu",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Ievadiet šeit jauno API atslēgu",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Atjaunināt",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Savienot",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Webhook Verifikācijas Token",
"WHATSAPP_WEBHOOK_SUBHEADER": "Šis marķieris tiek izmantots, lai pārbaudītu webhook endpoint autentiskumu.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/lv/integrations.json b/app/javascript/dashboard/i18n/locale/lv/integrations.json
index 087d56248..e5a013bd7 100644
--- a/app/javascript/dashboard/i18n/locale/lv/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/lv/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Meklēt..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Meklēt..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Dzēst"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Nosaukums",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Apraksts",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Izveidot",
+ "CANCEL": "Atcelt"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Atcelt",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Meklēt..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/ml/conversation.json b/app/javascript/dashboard/i18n/locale/ml/conversation.json
index 2d9f73dd7..269389e81 100644
--- a/app/javascript/dashboard/i18n/locale/ml/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/ml/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Loading agents...",
"ASSIGN_TEAM": "Assign team",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Conversation id {conversationId} assigned to \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/ml/helpCenter.json b/app/javascript/dashboard/i18n/locale/ml/helpCenter.json
index 69bfd1652..83e11d51b 100644
--- a/app/javascript/dashboard/i18n/locale/ml/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/ml/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portal deleted successfully",
"DELETE_ERROR": "Error while deleting portal"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Portal home page link",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Custom domain",
"LABEL": "Custom domain:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Portal custom domain",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "എഡിറ്റുചെയ്യുക",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Live",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Custom domain",
"PLACEHOLDER": "Portal custom domain",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "അയയ്ക്കുക"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/ml/inbox.json b/app/javascript/dashboard/i18n/locale/ml/inbox.json
index ec371bbd9..3b376d0a8 100644
--- a/app/javascript/dashboard/i18n/locale/ml/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/ml/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "All notifications marked as read",
"DELETE_ALL": "All notifications deleted",
"DELETE_ALL_READ": "All read notifications deleted"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/ml/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/ml/inboxMgmt.json
index ac8284ac0..d14da0e83 100644
--- a/app/javascript/dashboard/i18n/locale/ml/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/ml/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Update API Key",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Enter the new API Key here",
"WHATSAPP_SECTION_UPDATE_BUTTON": "അപ്ഡേറ്റ്",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "ബന്ധിപ്പിക്കുക",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Webhook Verification Token",
"WHATSAPP_WEBHOOK_SUBHEADER": "This token is used to verify the authenticity of the webhook endpoint.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/ml/integrations.json b/app/javascript/dashboard/i18n/locale/ml/integrations.json
index 7dc60fa47..f64124402 100644
--- a/app/javascript/dashboard/i18n/locale/ml/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/ml/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "ഇല്ലാതാക്കുക"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "തലക്കെട്ട്",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "വിവരണം",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "സൃഷ്ടിക്കുക",
+ "CANCEL": "റദ്ദാക്കുക"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "റദ്ദാക്കുക",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/ms/conversation.json b/app/javascript/dashboard/i18n/locale/ms/conversation.json
index 3d1360862..b1d271e8a 100644
--- a/app/javascript/dashboard/i18n/locale/ms/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/ms/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Loading agents...",
"ASSIGN_TEAM": "Assign team",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Conversation id {conversationId} assigned to \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/ms/helpCenter.json b/app/javascript/dashboard/i18n/locale/ms/helpCenter.json
index 9f2371162..f6d9bd45e 100644
--- a/app/javascript/dashboard/i18n/locale/ms/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/ms/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portal deleted successfully",
"DELETE_ERROR": "Error while deleting portal"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Portal home page link",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Custom domain",
"LABEL": "Custom domain:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Portal custom domain",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "Edit",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Live",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Custom domain",
"PLACEHOLDER": "Portal custom domain",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Send"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/ms/inbox.json b/app/javascript/dashboard/i18n/locale/ms/inbox.json
index 2c5b48194..7bf546094 100644
--- a/app/javascript/dashboard/i18n/locale/ms/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/ms/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "All notifications marked as read",
"DELETE_ALL": "All notifications deleted",
"DELETE_ALL_READ": "All read notifications deleted"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/ms/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/ms/inboxMgmt.json
index 9e91cd8dc..46f46ece6 100644
--- a/app/javascript/dashboard/i18n/locale/ms/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/ms/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Update API Key",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Enter the new API Key here",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Update",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Connect",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Webhook Verification Token",
"WHATSAPP_WEBHOOK_SUBHEADER": "This token is used to verify the authenticity of the webhook endpoint.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/ms/integrations.json b/app/javascript/dashboard/i18n/locale/ms/integrations.json
index 5ebb59186..3f5083d30 100644
--- a/app/javascript/dashboard/i18n/locale/ms/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/ms/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Padamkan"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Title",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Description",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Create",
+ "CANCEL": "Batalkan"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Batalkan",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/ne/conversation.json b/app/javascript/dashboard/i18n/locale/ne/conversation.json
index 907a3414b..fb4db1116 100644
--- a/app/javascript/dashboard/i18n/locale/ne/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/ne/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Loading agents...",
"ASSIGN_TEAM": "Assign team",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Conversation id {conversationId} assigned to \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/ne/helpCenter.json b/app/javascript/dashboard/i18n/locale/ne/helpCenter.json
index 5a8d53825..2e8a9ba7d 100644
--- a/app/javascript/dashboard/i18n/locale/ne/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/ne/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portal deleted successfully",
"DELETE_ERROR": "Error while deleting portal"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Portal home page link",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Custom domain",
"LABEL": "Custom domain:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Portal custom domain",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "Edit",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Live",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Custom domain",
"PLACEHOLDER": "Portal custom domain",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Send"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/ne/inbox.json b/app/javascript/dashboard/i18n/locale/ne/inbox.json
index a07bae4af..385e9e4ce 100644
--- a/app/javascript/dashboard/i18n/locale/ne/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/ne/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "All notifications marked as read",
"DELETE_ALL": "All notifications deleted",
"DELETE_ALL_READ": "All read notifications deleted"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/ne/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/ne/inboxMgmt.json
index 3459f22ac..f53e031d8 100644
--- a/app/javascript/dashboard/i18n/locale/ne/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/ne/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Update API Key",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Enter the new API Key here",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Update",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Connect",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Webhook Verification Token",
"WHATSAPP_WEBHOOK_SUBHEADER": "This token is used to verify the authenticity of the webhook endpoint.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/ne/integrations.json b/app/javascript/dashboard/i18n/locale/ne/integrations.json
index 9ca9ba413..bc72dd2e3 100644
--- a/app/javascript/dashboard/i18n/locale/ne/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/ne/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Delete"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Title",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Description",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Create",
+ "CANCEL": "Cancel"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Cancel",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/nl/conversation.json b/app/javascript/dashboard/i18n/locale/nl/conversation.json
index 1bb5ea7a2..42d40749a 100644
--- a/app/javascript/dashboard/i18n/locale/nl/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/nl/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Agents worden geladen...",
"ASSIGN_TEAM": "Team toewijzen",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Gesprek id {conversationId} toegewezen aan \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/nl/helpCenter.json b/app/javascript/dashboard/i18n/locale/nl/helpCenter.json
index 720121818..22b503b2b 100644
--- a/app/javascript/dashboard/i18n/locale/nl/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/nl/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portal deleted successfully",
"DELETE_ERROR": "Error while deleting portal"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Portal home page link",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Custom domain",
"LABEL": "Custom domain:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Portal custom domain",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "Bewerken",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Live",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Custom domain",
"PLACEHOLDER": "Portal custom domain",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Verzenden"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/nl/inbox.json b/app/javascript/dashboard/i18n/locale/nl/inbox.json
index 357a73ba7..2b1d3d8ba 100644
--- a/app/javascript/dashboard/i18n/locale/nl/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/nl/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "All notifications marked as read",
"DELETE_ALL": "All notifications deleted",
"DELETE_ALL_READ": "All read notifications deleted"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/nl/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/nl/inboxMgmt.json
index 9f1286294..fbc9511db 100644
--- a/app/javascript/dashboard/i18n/locale/nl/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/nl/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Update API Key",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Enter the new API Key here",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Vernieuwen",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Verbinden",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Webhook Verification Token",
"WHATSAPP_WEBHOOK_SUBHEADER": "This token is used to verify the authenticity of the webhook endpoint.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/nl/integrations.json b/app/javascript/dashboard/i18n/locale/nl/integrations.json
index c02928d02..7b971629c 100644
--- a/app/javascript/dashboard/i18n/locale/nl/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/nl/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Verwijderen"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Titel",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Beschrijving",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Aanmaken",
+ "CANCEL": "Annuleren"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Annuleren",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/no/conversation.json b/app/javascript/dashboard/i18n/locale/no/conversation.json
index 3d70da918..f5b59e7ed 100644
--- a/app/javascript/dashboard/i18n/locale/no/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/no/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Loading agents...",
"ASSIGN_TEAM": "Assign team",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Conversation id {conversationId} assigned to \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/no/helpCenter.json b/app/javascript/dashboard/i18n/locale/no/helpCenter.json
index bcb18e065..736bb0e23 100644
--- a/app/javascript/dashboard/i18n/locale/no/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/no/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portal deleted successfully",
"DELETE_ERROR": "Error while deleting portal"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Portal home page link",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Custom domain",
"LABEL": "Custom domain:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Portal custom domain",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "Rediger",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Live",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Custom domain",
"PLACEHOLDER": "Portal custom domain",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Send"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/no/inbox.json b/app/javascript/dashboard/i18n/locale/no/inbox.json
index 5b0f59d26..762e722c3 100644
--- a/app/javascript/dashboard/i18n/locale/no/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/no/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "All notifications marked as read",
"DELETE_ALL": "All notifications deleted",
"DELETE_ALL_READ": "All read notifications deleted"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/no/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/no/inboxMgmt.json
index 88ade0a31..1f5826078 100644
--- a/app/javascript/dashboard/i18n/locale/no/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/no/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Update API Key",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Enter the new API Key here",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Oppdater",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Koble til",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Webhook Verification Token",
"WHATSAPP_WEBHOOK_SUBHEADER": "This token is used to verify the authenticity of the webhook endpoint.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/no/integrations.json b/app/javascript/dashboard/i18n/locale/no/integrations.json
index 410176001..10b668191 100644
--- a/app/javascript/dashboard/i18n/locale/no/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/no/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Slett"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Title",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Beskrivelse",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Opprett",
+ "CANCEL": "Avbryt"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Avbryt",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/pl/conversation.json b/app/javascript/dashboard/i18n/locale/pl/conversation.json
index 91f68d0a8..546af5f1d 100644
--- a/app/javascript/dashboard/i18n/locale/pl/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/pl/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Ładowanie agentów...",
"ASSIGN_TEAM": "Przypisz zespół",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Konwersacja o identyfikatorze {conversationId} przypisana do \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/pl/helpCenter.json b/app/javascript/dashboard/i18n/locale/pl/helpCenter.json
index 5bba3a2fc..518c73f81 100644
--- a/app/javascript/dashboard/i18n/locale/pl/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/pl/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portal został pomyślnie usunięty",
"DELETE_ERROR": "Błąd podczas usuwania portalu"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Link do strony głównej portalu",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Niestandardowa domena",
"LABEL": "Niestandardowa domena:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Niestandardowa domena portalu",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "Edytuj",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Na żywo",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Niestandardowa domena",
"PLACEHOLDER": "Niestandardowa domena portalu",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Wyślij"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/pl/inbox.json b/app/javascript/dashboard/i18n/locale/pl/inbox.json
index 01d6a676e..d7f3183b3 100644
--- a/app/javascript/dashboard/i18n/locale/pl/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/pl/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "All notifications marked as read",
"DELETE_ALL": "All notifications deleted",
"DELETE_ALL_READ": "All read notifications deleted"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/pl/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/pl/inboxMgmt.json
index 95028bbd5..7f5a62f96 100644
--- a/app/javascript/dashboard/i18n/locale/pl/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/pl/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Aktualizacja klucza API",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Wprowadź nowy klucz API tutaj",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Aktualizuj",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Połącz",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Token weryfikacyjny webhooka",
"WHATSAPP_WEBHOOK_SUBHEADER": "Ten token służy do weryfikacji autentyczności punktu końcowego webhooka.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/pl/integrations.json b/app/javascript/dashboard/i18n/locale/pl/integrations.json
index 59c1d7959..ec149a9e4 100644
--- a/app/javascript/dashboard/i18n/locale/pl/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/pl/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Usuń"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Tytuł",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Opis",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Stwórz",
+ "CANCEL": "Anuluj"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Anuluj",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/pt/conversation.json b/app/javascript/dashboard/i18n/locale/pt/conversation.json
index 9ece5b576..fba7e5b09 100644
--- a/app/javascript/dashboard/i18n/locale/pt/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/pt/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "A carregar agentes...",
"ASSIGN_TEAM": "Atribuir equipa",
"DELETE": "Apagar conversa",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Conversa com ID {conversationId} atribuída a \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/pt/helpCenter.json b/app/javascript/dashboard/i18n/locale/pt/helpCenter.json
index 774a064d8..1f4468d43 100644
--- a/app/javascript/dashboard/i18n/locale/pt/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/pt/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portal apagado com sucesso",
"DELETE_ERROR": "Erro ao apagar portal"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Link da página inicial do portal",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Domínio personalizado",
"LABEL": "Domínio personalizado:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Domínio personalizado do portal",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "Editar",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Disponível",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Domínio personalizado",
"PLACEHOLDER": "Domínio personalizado do portal",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Enviar"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/pt/inbox.json b/app/javascript/dashboard/i18n/locale/pt/inbox.json
index ff4c6cddd..1c9a5909c 100644
--- a/app/javascript/dashboard/i18n/locale/pt/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/pt/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "Todas as notificações marcadas como lidas",
"DELETE_ALL": "Todas as notificações foram excluídas",
"DELETE_ALL_READ": "Todas as notificações lidas foram excluídas"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/pt/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/pt/inboxMgmt.json
index 6fa646120..d698c6313 100644
--- a/app/javascript/dashboard/i18n/locale/pt/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/pt/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Atualizar chave da API",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Insira a nova chave da API aqui",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Atualização",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Conectar",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Webhook de verificação do token",
"WHATSAPP_WEBHOOK_SUBHEADER": "Este token é usado para verificar a autenticidade do endpoint do webhook.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/pt/integrations.json b/app/javascript/dashboard/i18n/locale/pt/integrations.json
index 7b71f9936..69c3ddb4f 100644
--- a/app/javascript/dashboard/i18n/locale/pt/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/pt/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Selecionar todas ({count})",
+ "UNSELECT_ALL": "Desmarcar todas ({count})",
+ "BULK_DELETE_BUTTON": "Excluir"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Título",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Descrição",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Criar",
+ "CANCEL": "Cancelar"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Cancelar",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/pt_BR/conversation.json b/app/javascript/dashboard/i18n/locale/pt_BR/conversation.json
index 0258e0031..538d02ad7 100644
--- a/app/javascript/dashboard/i18n/locale/pt_BR/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/pt_BR/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Carregando agentes...",
"ASSIGN_TEAM": "Atribuir time",
"DELETE": "Excluir conversa",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "ID da conversa {conversationId} atribuído para \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/pt_BR/helpCenter.json b/app/javascript/dashboard/i18n/locale/pt_BR/helpCenter.json
index 9c7ec6a14..b438afa7d 100644
--- a/app/javascript/dashboard/i18n/locale/pt_BR/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/pt_BR/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portal excluído com sucesso",
"DELETE_ERROR": "Erro enquanto excluía o portal"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Link da Página Inicial",
"PLACEHOLDER": "Link da página inicial do portal",
- "ERROR": "URL inválida. O link da página inicial deve começar com 'http://' ou 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Domínio personalizado",
"LABEL": "Domínio personalizado:",
"DESCRIPTION": "Você pode hospedar seu portal em um domínio personalizado. Por exemplo, se seu site for meudominio.com e você quer o seu portal disponível em docs.meudominio.com, basta digitar isso neste campo.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Domínio personalizado do portal",
- "EDIT_BUTTON": "Editar domínio personalizado",
+ "EDIT_BUTTON": "Alterar",
"ADD_BUTTON": "Adicionar domínio personalizado",
+ "STATUS": {
+ "LIVE": "Em tempo real",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Adicionar domínio personalizado",
"EDIT_HEADER": "Editar domínio personalizado",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Atualizar domínio",
"LABEL": "Domínio personalizado",
"PLACEHOLDER": "Domínio personalizado do portal",
- "ERROR": "Domínio personalizado é obrigatório"
+ "ERROR": "Domínio personalizado é obrigatório",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "Configuração de DNS",
"DESCRIPTION": "Faça o login na conta que você tem com seu provedor DNS e adicione um registro CNAME para subdomínio apontando para chatwoot.help",
- "HELP_TEXT": "Assim que isso for feito, você poderá entrar em contato com o nosso suporte para solicitar o certificado SSL gerado automaticamente.",
- "CONFIRM_BUTTON_LABEL": "Entendi!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Enviar"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/pt_BR/inbox.json b/app/javascript/dashboard/i18n/locale/pt_BR/inbox.json
index 008d2c0c7..d3750f133 100644
--- a/app/javascript/dashboard/i18n/locale/pt_BR/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/pt_BR/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "Todas as notificações marcadas como lidas",
"DELETE_ALL": "Todas as notificações excluídas",
"DELETE_ALL_READ": "Todas as notificações lidas foram excluídas"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/pt_BR/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/pt_BR/inboxMgmt.json
index aac205dec..3385491a1 100644
--- a/app/javascript/dashboard/i18n/locale/pt_BR/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/pt_BR/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Atualizar Chave de API",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Digite a nova chave de API aqui",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Atualizar",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Conectar",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Token de verificação Webhook",
"WHATSAPP_WEBHOOK_SUBHEADER": "Este token é usado para verificar a autenticidade do webhook endpoint.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/pt_BR/integrations.json b/app/javascript/dashboard/i18n/locale/pt_BR/integrations.json
index 0164c0852..1b690cb82 100644
--- a/app/javascript/dashboard/i18n/locale/pt_BR/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/pt_BR/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Pesquisar..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Pesquisar..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Selecionar todos ({count})",
+ "UNSELECT_ALL": "Desmarcar todos ({count})",
+ "BULK_DELETE_BUTTON": "Excluir"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Título",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Descrição",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Criar",
+ "CANCEL": "Cancelar"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Cancelar",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Pesquisar..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/ro/conversation.json b/app/javascript/dashboard/i18n/locale/ro/conversation.json
index 8925d513d..3e9ddb6b9 100644
--- a/app/javascript/dashboard/i18n/locale/ro/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/ro/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Se încarcă agenții...",
"ASSIGN_TEAM": "Atribuiți echipă",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Id conversație {conversationId} atribuit la \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/ro/helpCenter.json b/app/javascript/dashboard/i18n/locale/ro/helpCenter.json
index b6f45a8eb..ed326fc89 100644
--- a/app/javascript/dashboard/i18n/locale/ro/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/ro/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portalul a fost sters",
"DELETE_ERROR": "Eroare la ștergerea portalului"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Link pagină portal",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Domeniu personalizat",
"LABEL": "Domeniu personalizat:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Domeniu personalizat portal",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "Editare",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Live",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Domeniu personalizat",
"PLACEHOLDER": "Domeniu personalizat portal",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Trimite"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/ro/inbox.json b/app/javascript/dashboard/i18n/locale/ro/inbox.json
index 73e3ef69f..8515682ff 100644
--- a/app/javascript/dashboard/i18n/locale/ro/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/ro/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "All notifications marked as read",
"DELETE_ALL": "All notifications deleted",
"DELETE_ALL_READ": "All read notifications deleted"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/ro/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/ro/inboxMgmt.json
index d1079d98a..9af77f363 100644
--- a/app/javascript/dashboard/i18n/locale/ro/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/ro/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Actualizați cheia API",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Introduceți noua cheie API aici",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Actualizare",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Conectează-te",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Token de verificare Webhook",
"WHATSAPP_WEBHOOK_SUBHEADER": "Acest simbol este utilizat pentru a verifica autenticitatea punctului final webhook.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/ro/integrations.json b/app/javascript/dashboard/i18n/locale/ro/integrations.json
index af3c37476..513b93b64 100644
--- a/app/javascript/dashboard/i18n/locale/ro/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/ro/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Şterge"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Titlu",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Descriere",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Creeaza",
+ "CANCEL": "Renunță"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Renunță",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/ru/conversation.json b/app/javascript/dashboard/i18n/locale/ru/conversation.json
index 1ccf73838..a39ab3040 100644
--- a/app/javascript/dashboard/i18n/locale/ru/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/ru/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Загрузка агентов...",
"ASSIGN_TEAM": "Назначить команду",
"DELETE": "Удалить диалог",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "ID разговора {conversationId} присвоен \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/ru/helpCenter.json b/app/javascript/dashboard/i18n/locale/ru/helpCenter.json
index 4f9002b9a..aa59d0944 100644
--- a/app/javascript/dashboard/i18n/locale/ru/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/ru/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Портал успешно удален",
"DELETE_ERROR": "Ошибка при удалении портала"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Ссылка на домашнюю страницу",
"PLACEHOLDER": "Ссылка на главную страницу портала",
- "ERROR": "Неправильный URL-адрес. Ссылка на главную страницу должна начинаться с 'http://' или 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Метка",
@@ -747,9 +753,15 @@
"HEADER": "Свой домен",
"LABEL": "Свой домен:",
"DESCRIPTION": "Вы можете разместить ваш портал на собственном домене. Например, если ваш сайт — yourdomain.com, и вы хотите, чтобы ваш портал был доступен по адресу docs.yourdomain.com, просто введите это в это поле.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Пользовательский домен портала",
- "EDIT_BUTTON": "Редактировать пользовательский домен",
+ "EDIT_BUTTON": "Редактировать",
"ADD_BUTTON": "Добавить пользовательский домен",
+ "STATUS": {
+ "LIVE": "Онлайн",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Добавить пользовательский домен",
"EDIT_HEADER": "Редактировать пользовательский домен",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Обновить домен",
"LABEL": "Свой домен",
"PLACEHOLDER": "Пользовательский домен портала",
- "ERROR": "Требуется пользовательский домен"
+ "ERROR": "Требуется пользовательский домен",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "Настройка DNS",
"DESCRIPTION": "Войдите в учетную запись с вашим DNS провайдером и добавьте запись CNAME для поддомена, указывающего на chatwoot.help",
- "HELP_TEXT": "Как только это будет сделано, вы можете связаться с нашей службой поддержки для запроса SSL-сертификата.",
- "CONFIRM_BUTTON_LABEL": "Понял!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Отправить"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/ru/inbox.json b/app/javascript/dashboard/i18n/locale/ru/inbox.json
index 1b4c77a93..b651ffe31 100644
--- a/app/javascript/dashboard/i18n/locale/ru/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/ru/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "Все уведомления отмечены как прочитанные",
"DELETE_ALL": "Все уведомления удалены",
"DELETE_ALL_READ": "Все прочитанные уведомления удалены"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/ru/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/ru/inboxMgmt.json
index 01a066111..83b983539 100644
--- a/app/javascript/dashboard/i18n/locale/ru/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/ru/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Обновить ключ API",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Введите сюда новый ключ API",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Обновить",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Подключить",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Токен авторизации Webhook",
"WHATSAPP_WEBHOOK_SUBHEADER": "Этот токен используется для проверки подлинности конечной точки веб-хука.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/ru/integrations.json b/app/javascript/dashboard/i18n/locale/ru/integrations.json
index 81f00c34c..833e9faf5 100644
--- a/app/javascript/dashboard/i18n/locale/ru/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/ru/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Поиск..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Поиск..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Удалить"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Название",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Описание",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Создать",
+ "CANCEL": "Отменить"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Отменить",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Поиск..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/sh/conversation.json b/app/javascript/dashboard/i18n/locale/sh/conversation.json
index 5b3b7f3f8..308f24f51 100644
--- a/app/javascript/dashboard/i18n/locale/sh/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/sh/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Loading agents...",
"ASSIGN_TEAM": "Assign team",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Conversation id {conversationId} assigned to \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/sh/helpCenter.json b/app/javascript/dashboard/i18n/locale/sh/helpCenter.json
index f437b83d9..fd2b1a788 100644
--- a/app/javascript/dashboard/i18n/locale/sh/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/sh/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portal deleted successfully",
"DELETE_ERROR": "Error while deleting portal"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Portal home page link",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Custom domain",
"LABEL": "Custom domain:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Portal custom domain",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "Edit",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Live",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Custom domain",
"PLACEHOLDER": "Portal custom domain",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Send"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/sh/inbox.json b/app/javascript/dashboard/i18n/locale/sh/inbox.json
index a07bae4af..385e9e4ce 100644
--- a/app/javascript/dashboard/i18n/locale/sh/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/sh/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "All notifications marked as read",
"DELETE_ALL": "All notifications deleted",
"DELETE_ALL_READ": "All read notifications deleted"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/sh/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/sh/inboxMgmt.json
index 3b17580a1..db4959846 100644
--- a/app/javascript/dashboard/i18n/locale/sh/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/sh/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Update API Key",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Enter the new API Key here",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Update",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Connect",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Webhook Verification Token",
"WHATSAPP_WEBHOOK_SUBHEADER": "This token is used to verify the authenticity of the webhook endpoint.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/sh/integrations.json b/app/javascript/dashboard/i18n/locale/sh/integrations.json
index 722f0012f..68ce25b15 100644
--- a/app/javascript/dashboard/i18n/locale/sh/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/sh/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Delete"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Title",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Description",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Create",
+ "CANCEL": "Cancel"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Cancel",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/sk/conversation.json b/app/javascript/dashboard/i18n/locale/sk/conversation.json
index 1a51e5e40..586751810 100644
--- a/app/javascript/dashboard/i18n/locale/sk/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/sk/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Loading agents...",
"ASSIGN_TEAM": "Assign team",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Conversation id {conversationId} assigned to \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/sk/helpCenter.json b/app/javascript/dashboard/i18n/locale/sk/helpCenter.json
index d6661553e..9dfb60107 100644
--- a/app/javascript/dashboard/i18n/locale/sk/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/sk/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portal deleted successfully",
"DELETE_ERROR": "Error while deleting portal"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Portal home page link",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Custom domain",
"LABEL": "Custom domain:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Portal custom domain",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "Upraviť",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Live",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Custom domain",
"PLACEHOLDER": "Portal custom domain",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Poslať"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/sk/inbox.json b/app/javascript/dashboard/i18n/locale/sk/inbox.json
index 99367513d..a1b811b00 100644
--- a/app/javascript/dashboard/i18n/locale/sk/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/sk/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "All notifications marked as read",
"DELETE_ALL": "All notifications deleted",
"DELETE_ALL_READ": "All read notifications deleted"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/sk/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/sk/inboxMgmt.json
index 90d9c77a9..535d60aec 100644
--- a/app/javascript/dashboard/i18n/locale/sk/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/sk/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Update API Key",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Enter the new API Key here",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Update",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Connect",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Webhook Verification Token",
"WHATSAPP_WEBHOOK_SUBHEADER": "This token is used to verify the authenticity of the webhook endpoint.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/sk/integrations.json b/app/javascript/dashboard/i18n/locale/sk/integrations.json
index c647dafa6..e0d32c972 100644
--- a/app/javascript/dashboard/i18n/locale/sk/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/sk/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Vymazať"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Title",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Description",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Create",
+ "CANCEL": "Zrušiť"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Zrušiť",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/sl/conversation.json b/app/javascript/dashboard/i18n/locale/sl/conversation.json
index d87e19400..b62a8eb60 100644
--- a/app/javascript/dashboard/i18n/locale/sl/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/sl/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Loading agents...",
"ASSIGN_TEAM": "Assign team",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Conversation id {conversationId} assigned to \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/sl/helpCenter.json b/app/javascript/dashboard/i18n/locale/sl/helpCenter.json
index 9bdf6e192..5d99482b7 100644
--- a/app/javascript/dashboard/i18n/locale/sl/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/sl/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portal deleted successfully",
"DELETE_ERROR": "Error while deleting portal"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Portal home page link",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Custom domain",
"LABEL": "Custom domain:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Portal custom domain",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "Edit",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Live",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Custom domain",
"PLACEHOLDER": "Portal custom domain",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Send"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/sl/inbox.json b/app/javascript/dashboard/i18n/locale/sl/inbox.json
index b1c439e0a..3166c6187 100644
--- a/app/javascript/dashboard/i18n/locale/sl/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/sl/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "All notifications marked as read",
"DELETE_ALL": "All notifications deleted",
"DELETE_ALL_READ": "All read notifications deleted"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/sl/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/sl/inboxMgmt.json
index 8e21df55f..30fd68bde 100644
--- a/app/javascript/dashboard/i18n/locale/sl/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/sl/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Update API Key",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Enter the new API Key here",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Update",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Connect",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Webhook Verification Token",
"WHATSAPP_WEBHOOK_SUBHEADER": "This token is used to verify the authenticity of the webhook endpoint.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/sl/integrations.json b/app/javascript/dashboard/i18n/locale/sl/integrations.json
index c0336b266..5880a6b3c 100644
--- a/app/javascript/dashboard/i18n/locale/sl/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/sl/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Iskanje ..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Iskanje ..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Delete"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Title",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Description",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Create",
+ "CANCEL": "Cancel"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Cancel",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Iskanje ..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/sq/conversation.json b/app/javascript/dashboard/i18n/locale/sq/conversation.json
index 5b3b7f3f8..308f24f51 100644
--- a/app/javascript/dashboard/i18n/locale/sq/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/sq/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Loading agents...",
"ASSIGN_TEAM": "Assign team",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Conversation id {conversationId} assigned to \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/sq/helpCenter.json b/app/javascript/dashboard/i18n/locale/sq/helpCenter.json
index 360d77f10..7a4de594e 100644
--- a/app/javascript/dashboard/i18n/locale/sq/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/sq/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portal deleted successfully",
"DELETE_ERROR": "Error while deleting portal"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Portal home page link",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Custom domain",
"LABEL": "Custom domain:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Portal custom domain",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "Edit",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Live",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Custom domain",
"PLACEHOLDER": "Portal custom domain",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Send"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/sq/inbox.json b/app/javascript/dashboard/i18n/locale/sq/inbox.json
index a07bae4af..385e9e4ce 100644
--- a/app/javascript/dashboard/i18n/locale/sq/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/sq/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "All notifications marked as read",
"DELETE_ALL": "All notifications deleted",
"DELETE_ALL_READ": "All read notifications deleted"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/sq/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/sq/inboxMgmt.json
index f8a52e0dd..3c0769793 100644
--- a/app/javascript/dashboard/i18n/locale/sq/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/sq/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Update API Key",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Enter the new API Key here",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Update",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Connect",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Webhook Verification Token",
"WHATSAPP_WEBHOOK_SUBHEADER": "This token is used to verify the authenticity of the webhook endpoint.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/sq/integrations.json b/app/javascript/dashboard/i18n/locale/sq/integrations.json
index 019fa37cb..24315dec2 100644
--- a/app/javascript/dashboard/i18n/locale/sq/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/sq/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Delete"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Title",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Description",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Create",
+ "CANCEL": "Cancel"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Cancel",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/sr/conversation.json b/app/javascript/dashboard/i18n/locale/sr/conversation.json
index ea8cc2294..cbf7cfe36 100644
--- a/app/javascript/dashboard/i18n/locale/sr/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/sr/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Učitavanje agenata...",
"ASSIGN_TEAM": "Dodeli tim",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Razgovor sa ID {conversationId} je dodeljen \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/sr/helpCenter.json b/app/javascript/dashboard/i18n/locale/sr/helpCenter.json
index 68595fce6..892fc24ad 100644
--- a/app/javascript/dashboard/i18n/locale/sr/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/sr/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portal deleted successfully",
"DELETE_ERROR": "Error while deleting portal"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Veza do početne stranice portala",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Prilagođeni domen",
"LABEL": "Prilagođeni domen:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Prilagođeni domen portala",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "Uredi",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Uživo",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Prilagođeni domen",
"PLACEHOLDER": "Prilagođeni domen portala",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Pošalji"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/sr/inbox.json b/app/javascript/dashboard/i18n/locale/sr/inbox.json
index 5a7c09da1..60398f22a 100644
--- a/app/javascript/dashboard/i18n/locale/sr/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/sr/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "All notifications marked as read",
"DELETE_ALL": "All notifications deleted",
"DELETE_ALL_READ": "All read notifications deleted"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/sr/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/sr/inboxMgmt.json
index 4e3769406..97015ee59 100644
--- a/app/javascript/dashboard/i18n/locale/sr/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/sr/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Update API Key",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Enter the new API Key here",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Primeni",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Poveži se",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Webhook Verification Token",
"WHATSAPP_WEBHOOK_SUBHEADER": "This token is used to verify the authenticity of the webhook endpoint.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/sr/integrations.json b/app/javascript/dashboard/i18n/locale/sr/integrations.json
index 84d32eea2..8dada5dc6 100644
--- a/app/javascript/dashboard/i18n/locale/sr/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/sr/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Izbriši"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Naslov",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Opis",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Napravi",
+ "CANCEL": "Otkaži"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Otkaži",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/sv/conversation.json b/app/javascript/dashboard/i18n/locale/sv/conversation.json
index 3b41ef698..e10a0422f 100644
--- a/app/javascript/dashboard/i18n/locale/sv/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/sv/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Laddar agenter...",
"ASSIGN_TEAM": "Tilldela team",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Conversation id {conversationId} assigned to \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/sv/helpCenter.json b/app/javascript/dashboard/i18n/locale/sv/helpCenter.json
index 20a824f85..518ad737e 100644
--- a/app/javascript/dashboard/i18n/locale/sv/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/sv/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portal deleted successfully",
"DELETE_ERROR": "Error while deleting portal"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Portal home page link",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Custom domain",
"LABEL": "Custom domain:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Portal custom domain",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "Redigera",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Live",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Custom domain",
"PLACEHOLDER": "Portal custom domain",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Skicka"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/sv/inbox.json b/app/javascript/dashboard/i18n/locale/sv/inbox.json
index 470bf1679..db18a6c78 100644
--- a/app/javascript/dashboard/i18n/locale/sv/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/sv/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "All notifications marked as read",
"DELETE_ALL": "All notifications deleted",
"DELETE_ALL_READ": "All read notifications deleted"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/sv/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/sv/inboxMgmt.json
index 3b11970b5..a600dcf2e 100644
--- a/app/javascript/dashboard/i18n/locale/sv/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/sv/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Update API Key",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Enter the new API Key here",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Uppdatera",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Anslut",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Webhook Verification Token",
"WHATSAPP_WEBHOOK_SUBHEADER": "This token is used to verify the authenticity of the webhook endpoint.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/sv/integrations.json b/app/javascript/dashboard/i18n/locale/sv/integrations.json
index 4fd367202..805d3481f 100644
--- a/app/javascript/dashboard/i18n/locale/sv/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/sv/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Radera"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Title",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Beskrivning",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Skapa",
+ "CANCEL": "Avbryt"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Avbryt",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/ta/conversation.json b/app/javascript/dashboard/i18n/locale/ta/conversation.json
index f9083b51e..35fdfe6f3 100644
--- a/app/javascript/dashboard/i18n/locale/ta/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/ta/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Loading agents...",
"ASSIGN_TEAM": "Assign team",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Conversation id {conversationId} assigned to \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/ta/helpCenter.json b/app/javascript/dashboard/i18n/locale/ta/helpCenter.json
index 32401dc2e..c3dfbd38d 100644
--- a/app/javascript/dashboard/i18n/locale/ta/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/ta/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portal deleted successfully",
"DELETE_ERROR": "Error while deleting portal"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Portal home page link",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Custom domain",
"LABEL": "Custom domain:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Portal custom domain",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "திருத்து",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Live",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Custom domain",
"PLACEHOLDER": "Portal custom domain",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "அனுப்பு"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/ta/inbox.json b/app/javascript/dashboard/i18n/locale/ta/inbox.json
index a07bae4af..385e9e4ce 100644
--- a/app/javascript/dashboard/i18n/locale/ta/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/ta/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "All notifications marked as read",
"DELETE_ALL": "All notifications deleted",
"DELETE_ALL_READ": "All read notifications deleted"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/ta/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/ta/inboxMgmt.json
index f06cd63aa..f554e432c 100644
--- a/app/javascript/dashboard/i18n/locale/ta/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/ta/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Update API Key",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Enter the new API Key here",
"WHATSAPP_SECTION_UPDATE_BUTTON": "புதுப்பிப்பு",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Connect",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Webhook Verification Token",
"WHATSAPP_WEBHOOK_SUBHEADER": "This token is used to verify the authenticity of the webhook endpoint.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/ta/integrations.json b/app/javascript/dashboard/i18n/locale/ta/integrations.json
index d64fd3a3b..160cb189f 100644
--- a/app/javascript/dashboard/i18n/locale/ta/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/ta/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Delete"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Title",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Description",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Create",
+ "CANCEL": "ரத்துசெய்"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "ரத்துசெய்",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/th/conversation.json b/app/javascript/dashboard/i18n/locale/th/conversation.json
index 4f7fa94e9..fd7422578 100644
--- a/app/javascript/dashboard/i18n/locale/th/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/th/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Loading agents...",
"ASSIGN_TEAM": "Assign team",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "รหัสการสนทนา {conversationId} ถูกมอบหมายให้กับ {agentName}",
diff --git a/app/javascript/dashboard/i18n/locale/th/helpCenter.json b/app/javascript/dashboard/i18n/locale/th/helpCenter.json
index 1032d2927..a9bb3fda5 100644
--- a/app/javascript/dashboard/i18n/locale/th/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/th/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portal deleted successfully",
"DELETE_ERROR": "Error while deleting portal"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Portal home page link",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Custom domain",
"LABEL": "Custom domain:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Portal custom domain",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "เเก้ไข",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "ขณะนี้",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Custom domain",
"PLACEHOLDER": "Portal custom domain",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "ส่ง"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/th/inbox.json b/app/javascript/dashboard/i18n/locale/th/inbox.json
index 46af91fe6..68de5c5e4 100644
--- a/app/javascript/dashboard/i18n/locale/th/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/th/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "All notifications marked as read",
"DELETE_ALL": "All notifications deleted",
"DELETE_ALL_READ": "All read notifications deleted"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/th/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/th/inboxMgmt.json
index e5ac0a41e..e41aab615 100644
--- a/app/javascript/dashboard/i18n/locale/th/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/th/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Update API Key",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Enter the new API Key here",
"WHATSAPP_SECTION_UPDATE_BUTTON": "อัพเดท",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "เชื่อมต่อ",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Webhook Verification Token",
"WHATSAPP_WEBHOOK_SUBHEADER": "This token is used to verify the authenticity of the webhook endpoint.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/th/integrations.json b/app/javascript/dashboard/i18n/locale/th/integrations.json
index f6512f828..692daf68e 100644
--- a/app/javascript/dashboard/i18n/locale/th/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/th/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "ลบ"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "หัวข้อ",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "คำอธิบาย",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "สร้าง",
+ "CANCEL": "ยกเลิก"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "ยกเลิก",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/tl/conversation.json b/app/javascript/dashboard/i18n/locale/tl/conversation.json
index 5b3b7f3f8..308f24f51 100644
--- a/app/javascript/dashboard/i18n/locale/tl/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/tl/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Loading agents...",
"ASSIGN_TEAM": "Assign team",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Conversation id {conversationId} assigned to \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/tl/helpCenter.json b/app/javascript/dashboard/i18n/locale/tl/helpCenter.json
index f437b83d9..fd2b1a788 100644
--- a/app/javascript/dashboard/i18n/locale/tl/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/tl/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portal deleted successfully",
"DELETE_ERROR": "Error while deleting portal"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Portal home page link",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Custom domain",
"LABEL": "Custom domain:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Portal custom domain",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "Edit",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Live",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Custom domain",
"PLACEHOLDER": "Portal custom domain",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Send"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/tl/inbox.json b/app/javascript/dashboard/i18n/locale/tl/inbox.json
index a07bae4af..385e9e4ce 100644
--- a/app/javascript/dashboard/i18n/locale/tl/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/tl/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "All notifications marked as read",
"DELETE_ALL": "All notifications deleted",
"DELETE_ALL_READ": "All read notifications deleted"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/tl/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/tl/inboxMgmt.json
index 12580bcac..4006212a3 100644
--- a/app/javascript/dashboard/i18n/locale/tl/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/tl/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Update API Key",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Enter the new API Key here",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Update",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Connect",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Webhook Verification Token",
"WHATSAPP_WEBHOOK_SUBHEADER": "This token is used to verify the authenticity of the webhook endpoint.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/tl/integrations.json b/app/javascript/dashboard/i18n/locale/tl/integrations.json
index d9bf469c7..1614931a0 100644
--- a/app/javascript/dashboard/i18n/locale/tl/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/tl/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Delete"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Title",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Description",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Create",
+ "CANCEL": "Cancel"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Cancel",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/tr/conversation.json b/app/javascript/dashboard/i18n/locale/tr/conversation.json
index 0239355d6..4fd308d44 100644
--- a/app/javascript/dashboard/i18n/locale/tr/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/tr/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Temsilciler Yükleniyor...",
"ASSIGN_TEAM": "Takım ata",
"DELETE": "Sohbeti sil",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Sohbet kimliği {conversationId} \"{agentName}\" tarafından atanmış",
diff --git a/app/javascript/dashboard/i18n/locale/tr/generalSettings.json b/app/javascript/dashboard/i18n/locale/tr/generalSettings.json
index 1e22b121f..e5950bad5 100644
--- a/app/javascript/dashboard/i18n/locale/tr/generalSettings.json
+++ b/app/javascript/dashboard/i18n/locale/tr/generalSettings.json
@@ -134,7 +134,7 @@
"MULTISELECT": {
"ENTER_TO_SELECT": "Seçmek için enter tuşuna basın",
"ENTER_TO_REMOVE": "Kaldırmak için enter tuşuna basın",
- "NO_OPTIONS": "List is empty",
+ "NO_OPTIONS": "Liste boş",
"SELECT_ONE": "Birini seç",
"SELECT": "Seç"
}
diff --git a/app/javascript/dashboard/i18n/locale/tr/helpCenter.json b/app/javascript/dashboard/i18n/locale/tr/helpCenter.json
index 2ab2b274d..59555ecec 100644
--- a/app/javascript/dashboard/i18n/locale/tr/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/tr/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portal başarıyla silindi",
"DELETE_ERROR": "Portal silinirken hata oluştu"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Portal ana sayfa bağlantısı",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Özel domain",
"LABEL": "Özel domain:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Portal özel domain",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "Düzenle",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Canlı",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Özel domain",
"PLACEHOLDER": "Portal özel domain",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "Bu adımı geliştirme ekibinizden birinin yapmasını tercih ediyorsanız, aşağıya mail adresini girin; gerekli talimatları onlara gönderelim.",
+ "PLACEHOLDER": "E-posta adreslerini girin",
+ "ERROR": "Geçerli bir mail adresi girin",
+ "SEND_BUTTON": "Gönder"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/tr/inbox.json b/app/javascript/dashboard/i18n/locale/tr/inbox.json
index c2913ed40..db8ad18d8 100644
--- a/app/javascript/dashboard/i18n/locale/tr/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/tr/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "Tüm Bildirimler Okundu Olarak İşaretlendi",
"DELETE_ALL": "Tüm Bildirimler Silindi",
"DELETE_ALL_READ": "Tüm Okunmuş Bildirimler Silindi"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/tr/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/tr/inboxMgmt.json
index 2250d18bf..53c38eae1 100644
--- a/app/javascript/dashboard/i18n/locale/tr/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/tr/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "API Anahtarını Güncelle",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Yeni API Anahtarını buraya girin",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Güncelleme",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Bağlan",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Webhook Onay Anahtarı",
"WHATSAPP_WEBHOOK_SUBHEADER": "Bu belirteç, webhook uç noktasının gerçekliğini doğrulamak için kullanılır.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/tr/integrations.json b/app/javascript/dashboard/i18n/locale/tr/integrations.json
index 8c68be69e..5e774e07a 100644
--- a/app/javascript/dashboard/i18n/locale/tr/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/tr/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Sil"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Başlık",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Açıklama",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Yarat",
+ "CANCEL": "İptal Et"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "İptal Et",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/uk/conversation.json b/app/javascript/dashboard/i18n/locale/uk/conversation.json
index 62065b5d1..dad14a889 100644
--- a/app/javascript/dashboard/i18n/locale/uk/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/uk/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Завантаження агентів...",
"ASSIGN_TEAM": "Призначити команду",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Ідентифікатор розмови {conversationId} призначено для \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/uk/helpCenter.json b/app/javascript/dashboard/i18n/locale/uk/helpCenter.json
index 781614022..8d651d366 100644
--- a/app/javascript/dashboard/i18n/locale/uk/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/uk/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Портал успішно видалено",
"DELETE_ERROR": "Помилка під час видалення"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Посилання на головну сторінку порталу",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Мітка",
@@ -747,9 +753,15 @@
"HEADER": "Користувацький домен",
"LABEL": "Користувацький домен:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Власний домен порталу",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "Редагувати",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Онлайн",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Користувацький домен",
"PLACEHOLDER": "Власний домен порталу",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Надіслати"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/uk/inbox.json b/app/javascript/dashboard/i18n/locale/uk/inbox.json
index dcac08651..9384f272e 100644
--- a/app/javascript/dashboard/i18n/locale/uk/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/uk/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "Повідомлення помічено як прочитане",
"DELETE_ALL": "Сповіщення видалено",
"DELETE_ALL_READ": "Всі прочитані повідомлення видалено"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/uk/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/uk/inboxMgmt.json
index 0fa97089d..d57c34cf2 100644
--- a/app/javascript/dashboard/i18n/locale/uk/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/uk/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Оновити ключ API",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Введіть тут новий ключ API",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Оновити",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Підключитися",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Токен вебхука",
"WHATSAPP_WEBHOOK_SUBHEADER": "Цей токен використовується для перевірки аутентифікації кінцевої точки вебхука.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/uk/integrations.json b/app/javascript/dashboard/i18n/locale/uk/integrations.json
index 8f9016a66..bc7afcfc6 100644
--- a/app/javascript/dashboard/i18n/locale/uk/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/uk/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Видалити"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Назва",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Опис",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Створити",
+ "CANCEL": "Скасувати"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Скасувати",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/ur/conversation.json b/app/javascript/dashboard/i18n/locale/ur/conversation.json
index 2c09626ad..67c016b4f 100644
--- a/app/javascript/dashboard/i18n/locale/ur/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/ur/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Loading agents...",
"ASSIGN_TEAM": "Assign team",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Conversation id {conversationId} assigned to \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/ur/helpCenter.json b/app/javascript/dashboard/i18n/locale/ur/helpCenter.json
index ffb1ad3de..f09b765c0 100644
--- a/app/javascript/dashboard/i18n/locale/ur/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/ur/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portal deleted successfully",
"DELETE_ERROR": "Error while deleting portal"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Portal home page link",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Custom domain",
"LABEL": "Custom domain:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Portal custom domain",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "ترمیم",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Live",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Custom domain",
"PLACEHOLDER": "Portal custom domain",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Send"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/ur/inbox.json b/app/javascript/dashboard/i18n/locale/ur/inbox.json
index f4ee17ed2..ecf48c0f5 100644
--- a/app/javascript/dashboard/i18n/locale/ur/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/ur/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "All notifications marked as read",
"DELETE_ALL": "All notifications deleted",
"DELETE_ALL_READ": "All read notifications deleted"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/ur/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/ur/inboxMgmt.json
index b3f5d540e..b8f615d8a 100644
--- a/app/javascript/dashboard/i18n/locale/ur/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/ur/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Update API Key",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Enter the new API Key here",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Update",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Connect",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Webhook Verification Token",
"WHATSAPP_WEBHOOK_SUBHEADER": "This token is used to verify the authenticity of the webhook endpoint.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/ur/integrations.json b/app/javascript/dashboard/i18n/locale/ur/integrations.json
index 8471b0b86..bcf0c1a33 100644
--- a/app/javascript/dashboard/i18n/locale/ur/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/ur/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "حذف کریں۔"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Title",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Description",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Create",
+ "CANCEL": "منسوخ کریں۔"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "منسوخ کریں۔",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/ur_IN/conversation.json b/app/javascript/dashboard/i18n/locale/ur_IN/conversation.json
index 5b3b7f3f8..308f24f51 100644
--- a/app/javascript/dashboard/i18n/locale/ur_IN/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/ur_IN/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Loading agents...",
"ASSIGN_TEAM": "Assign team",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Conversation id {conversationId} assigned to \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/ur_IN/helpCenter.json b/app/javascript/dashboard/i18n/locale/ur_IN/helpCenter.json
index f437b83d9..fd2b1a788 100644
--- a/app/javascript/dashboard/i18n/locale/ur_IN/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/ur_IN/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portal deleted successfully",
"DELETE_ERROR": "Error while deleting portal"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Portal home page link",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Custom domain",
"LABEL": "Custom domain:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Portal custom domain",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "Edit",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Live",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Custom domain",
"PLACEHOLDER": "Portal custom domain",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Send"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/ur_IN/inbox.json b/app/javascript/dashboard/i18n/locale/ur_IN/inbox.json
index a07bae4af..385e9e4ce 100644
--- a/app/javascript/dashboard/i18n/locale/ur_IN/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/ur_IN/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "All notifications marked as read",
"DELETE_ALL": "All notifications deleted",
"DELETE_ALL_READ": "All read notifications deleted"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/ur_IN/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/ur_IN/inboxMgmt.json
index 03b5606f6..a81205fe7 100644
--- a/app/javascript/dashboard/i18n/locale/ur_IN/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/ur_IN/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Update API Key",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Enter the new API Key here",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Update",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Connect",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Webhook Verification Token",
"WHATSAPP_WEBHOOK_SUBHEADER": "This token is used to verify the authenticity of the webhook endpoint.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/ur_IN/integrations.json b/app/javascript/dashboard/i18n/locale/ur_IN/integrations.json
index 722f0012f..68ce25b15 100644
--- a/app/javascript/dashboard/i18n/locale/ur_IN/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/ur_IN/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Delete"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Title",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Description",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Create",
+ "CANCEL": "Cancel"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Cancel",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/vi/conversation.json b/app/javascript/dashboard/i18n/locale/vi/conversation.json
index 94d80c8b8..2803b1748 100644
--- a/app/javascript/dashboard/i18n/locale/vi/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/vi/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Đang tải điện thoại viên...",
"ASSIGN_TEAM": "Gán nhóm",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Id hội thoại {conversationId} được gán cho \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/vi/helpCenter.json b/app/javascript/dashboard/i18n/locale/vi/helpCenter.json
index f76ac6755..c7cb438b4 100644
--- a/app/javascript/dashboard/i18n/locale/vi/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/vi/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Đã xóa cổng thông tin thành công",
"DELETE_ERROR": "Lỗi khi xóa cổng thông tin"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Liên kế trang chủ cổng thông tin",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Tên miền tuỳ chỉnh",
"LABEL": "Tên miền tuỳ chỉnh:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Tên miền tuỳ biến cổng",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "Chỉnh sửa",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Trực tuyến",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Tên miền tuỳ chỉnh",
"PLACEHOLDER": "Tên miền tuỳ biến cổng",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "Gửi"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/vi/inbox.json b/app/javascript/dashboard/i18n/locale/vi/inbox.json
index 598f74b02..a842b9f29 100644
--- a/app/javascript/dashboard/i18n/locale/vi/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/vi/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "All notifications marked as read",
"DELETE_ALL": "All notifications deleted",
"DELETE_ALL_READ": "All read notifications deleted"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/vi/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/vi/inboxMgmt.json
index 1ad17adce..be06fe575 100644
--- a/app/javascript/dashboard/i18n/locale/vi/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/vi/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "Update API Key",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "Enter the new API Key here",
"WHATSAPP_SECTION_UPDATE_BUTTON": "Cập nhật",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "Kết nối",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Mã xác minh Webhook",
"WHATSAPP_WEBHOOK_SUBHEADER": "This token is used to verify the authenticity of the webhook endpoint.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/vi/integrations.json b/app/javascript/dashboard/i18n/locale/vi/integrations.json
index 8d554adc6..fdb96d792 100644
--- a/app/javascript/dashboard/i18n/locale/vi/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/vi/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "Xoá"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "Tiêu đề",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "Mô tả",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "Tạo",
+ "CANCEL": "Huỷ"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "Huỷ",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/zh_CN/conversation.json b/app/javascript/dashboard/i18n/locale/zh_CN/conversation.json
index 0cbf0ad36..c2bdd2aaa 100644
--- a/app/javascript/dashboard/i18n/locale/zh_CN/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/zh_CN/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "正在加载客服代表...",
"ASSIGN_TEAM": "分配一个团队",
"DELETE": "删除对话",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "对话 ID {conversationId} 已分配给 \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/zh_CN/helpCenter.json b/app/javascript/dashboard/i18n/locale/zh_CN/helpCenter.json
index 312080073..ede897b38 100644
--- a/app/javascript/dashboard/i18n/locale/zh_CN/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/zh_CN/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "门户删除成功",
"DELETE_ERROR": "删除门户时出错"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "主页链接",
"PLACEHOLDER": "门户主页链接",
- "ERROR": "无效的URL。主页链接必须以 'http://' 或 'https://' 开头。"
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "自定义域名",
"LABEL": "自定义域名:",
"DESCRIPTION": "您可以在自定义域名上托管您的门户。例如,如果您的网站是 yourdomain.com,并且您希望您的门户在 docs.yourdomain.com 上可用,只需在此字段中输入即可。",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "门户自定义域名",
- "EDIT_BUTTON": "编辑自定义域名",
+ "EDIT_BUTTON": "编辑",
"ADD_BUTTON": "添加自定义域名",
+ "STATUS": {
+ "LIVE": "实时",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "添加自定义域名",
"EDIT_HEADER": "编辑自定义域名",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "更新域名",
"LABEL": "自定义域名",
"PLACEHOLDER": "门户自定义域名",
- "ERROR": "自定义域名是必填项"
+ "ERROR": "自定义域名是必填项",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS配置",
"DESCRIPTION": "登录您的 DNS 提供商账户,并添加一个指向 chatwoot.help 的子域名的 CNAME 记录",
- "HELP_TEXT": "完成后,您可以联系我们的支持团队以请求自动生成的SSL证书。",
- "CONFIRM_BUTTON_LABEL": "明白了!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "发送"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/zh_CN/inbox.json b/app/javascript/dashboard/i18n/locale/zh_CN/inbox.json
index 49aa3c8fd..4b6be6b7f 100644
--- a/app/javascript/dashboard/i18n/locale/zh_CN/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/zh_CN/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "所有通知标记为已读",
"DELETE_ALL": "所有通知已删除",
"DELETE_ALL_READ": "所有已读通知已删除"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/zh_CN/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/zh_CN/inboxMgmt.json
index fa567b20e..9469db1f9 100644
--- a/app/javascript/dashboard/i18n/locale/zh_CN/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/zh_CN/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "更新API密钥",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "在此处输入新的API密钥",
"WHATSAPP_SECTION_UPDATE_BUTTON": "更新",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "连接",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Webhook 验证令牌",
"WHATSAPP_WEBHOOK_SUBHEADER": "此令牌用于验证webhook端点的真实性。",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/zh_CN/integrations.json b/app/javascript/dashboard/i18n/locale/zh_CN/integrations.json
index b3bc8ff2c..0132e71c6 100644
--- a/app/javascript/dashboard/i18n/locale/zh_CN/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/zh_CN/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "搜索……"
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "搜索……"
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "删除"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "标题",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "描述信息",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "创建",
+ "CANCEL": "取消"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "取消",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "搜索……"
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/i18n/locale/zh_TW/conversation.json b/app/javascript/dashboard/i18n/locale/zh_TW/conversation.json
index c233a2bf1..7b15031ca 100644
--- a/app/javascript/dashboard/i18n/locale/zh_TW/conversation.json
+++ b/app/javascript/dashboard/i18n/locale/zh_TW/conversation.json
@@ -144,6 +144,9 @@
"AGENTS_LOADING": "Loading agents...",
"ASSIGN_TEAM": "Assign team",
"DELETE": "Delete conversation",
+ "OPEN_IN_NEW_TAB": "Open in new tab",
+ "COPY_LINK": "Copy conversation link",
+ "COPY_LINK_SUCCESS": "Conversation link copied to clipboard",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Conversation id {conversationId} assigned to \"{agentName}\"",
diff --git a/app/javascript/dashboard/i18n/locale/zh_TW/helpCenter.json b/app/javascript/dashboard/i18n/locale/zh_TW/helpCenter.json
index 0dc927ec4..0fff5245e 100644
--- a/app/javascript/dashboard/i18n/locale/zh_TW/helpCenter.json
+++ b/app/javascript/dashboard/i18n/locale/zh_TW/helpCenter.json
@@ -157,6 +157,12 @@
"DELETE_SUCCESS": "Portal deleted successfully",
"DELETE_ERROR": "Error while deleting portal"
}
+ },
+ "SEND_CNAME_INSTRUCTIONS": {
+ "API": {
+ "SUCCESS_MESSAGE": "CNAME instructions sent successfully",
+ "ERROR_MESSAGE": "Error while sending CNAME instructions"
+ }
}
},
"EDIT": {
@@ -726,7 +732,7 @@
"HOME_PAGE_LINK": {
"LABEL": "Home page link",
"PLACEHOLDER": "Portal home page link",
- "ERROR": "Invalid URL. The Home page link must start with 'http://' or 'https://'."
+ "ERROR": "Enter a valid URL. The Home page link must start with 'http://' or 'https://'."
},
"SLUG": {
"LABEL": "Slug",
@@ -747,9 +753,15 @@
"HEADER": "Custom domain",
"LABEL": "Custom domain:",
"DESCRIPTION": "You can host your portal on a custom domain. For instance, if your website is yourdomain.com and you want your portal available at docs.yourdomain.com, simply enter that in this field.",
+ "STATUS_DESCRIPTION": "Your custom portal will start working as soon as it is verified.",
"PLACEHOLDER": "Portal custom domain",
- "EDIT_BUTTON": "Edit custom domain",
+ "EDIT_BUTTON": "編輯",
"ADD_BUTTON": "Add custom domain",
+ "STATUS": {
+ "LIVE": "Live",
+ "PENDING": "Awaiting verification",
+ "ERROR": "Verification failed"
+ },
"DIALOG": {
"ADD_HEADER": "Add custom domain",
"EDIT_HEADER": "Edit custom domain",
@@ -757,13 +769,20 @@
"EDIT_CONFIRM_BUTTON_LABEL": "Update domain",
"LABEL": "Custom domain",
"PLACEHOLDER": "Portal custom domain",
- "ERROR": "Custom domain is required"
+ "ERROR": "Custom domain is required",
+ "FORMAT_ERROR": "Please enter a valid domain URL e.g. docs.yourdomain.com"
},
"DNS_CONFIGURATION_DIALOG": {
"HEADER": "DNS configuration",
"DESCRIPTION": "Log in to the account you have with your DNS provider, and add a CNAME record for subdomain pointing to chatwoot.help",
- "HELP_TEXT": "Once this is done, you can reach out to our support to request for the auto-generated SSL certificate.",
- "CONFIRM_BUTTON_LABEL": "Got it!"
+ "COPY": "Successfully copied CNAME",
+ "SEND_INSTRUCTIONS": {
+ "HEADER": "Send instructions",
+ "DESCRIPTION": "If you would prefer to have someone from your development team to handle this step, you can enter email address below, and we will send them the required instructions.",
+ "PLACEHOLDER": "Enter their email",
+ "ERROR": "Enter a valid email address",
+ "SEND_BUTTON": "發送"
+ }
}
},
"DELETE_PORTAL": {
diff --git a/app/javascript/dashboard/i18n/locale/zh_TW/inbox.json b/app/javascript/dashboard/i18n/locale/zh_TW/inbox.json
index a7c2bb36a..02383f7be 100644
--- a/app/javascript/dashboard/i18n/locale/zh_TW/inbox.json
+++ b/app/javascript/dashboard/i18n/locale/zh_TW/inbox.json
@@ -72,6 +72,24 @@
"MARK_ALL_READ": "All notifications marked as read",
"DELETE_ALL": "All notifications deleted",
"DELETE_ALL_READ": "All read notifications deleted"
+ },
+ "REAUTHORIZE": {
+ "TITLE": "Reauthorization Required",
+ "DESCRIPTION": "Your WhatsApp connection has expired. Please reconnect to continue receiving and sending messages.",
+ "BUTTON_TEXT": "Reconnect WhatsApp",
+ "LOADING_FACEBOOK": "Loading Facebook SDK...",
+ "SUCCESS": "WhatsApp reconnected successfully",
+ "ERROR": "Failed to reconnect WhatsApp. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "CONFIGURATION_ERROR": "Configuration error occurred during reauthorization.",
+ "FACEBOOK_LOAD_ERROR": "Failed to load Facebook SDK. Please try again.",
+ "TROUBLESHOOTING": {
+ "TITLE": "Troubleshooting",
+ "POPUP_BLOCKED": "Ensure pop-ups are allowed for this site",
+ "COOKIES": "Third-party cookies must be enabled",
+ "ADMIN_ACCESS": "You need admin access to the WhatsApp Business Account"
+ }
}
}
}
diff --git a/app/javascript/dashboard/i18n/locale/zh_TW/inboxMgmt.json b/app/javascript/dashboard/i18n/locale/zh_TW/inboxMgmt.json
index ffd0f7765..65f73f500 100644
--- a/app/javascript/dashboard/i18n/locale/zh_TW/inboxMgmt.json
+++ b/app/javascript/dashboard/i18n/locale/zh_TW/inboxMgmt.json
@@ -280,6 +280,11 @@
"SECURE_AUTH": "Secure OAuth based authentication",
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
},
+ "LEARN_MORE": {
+ "TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
+ "LINK_TEXT": "this link.",
+ "LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
+ },
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
"AUTH_PROCESSING": "Authenticating with Meta",
"WAITING_FOR_BUSINESS_INFO": "Please complete business setup in the Meta window...",
@@ -598,6 +603,21 @@
"WHATSAPP_SECTION_UPDATE_TITLE": "更新 API Key",
"WHATSAPP_SECTION_UPDATE_PLACEHOLDER": "在此輸入新的 API Key",
"WHATSAPP_SECTION_UPDATE_BUTTON": "更新",
+ "WHATSAPP_EMBEDDED_SIGNUP_TITLE": "WhatsApp Embedded Signup",
+ "WHATSAPP_EMBEDDED_SIGNUP_SUBHEADER": "This inbox is connected through WhatsApp embedded signup.",
+ "WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION": "You can reconfigure this inbox to update your WhatsApp Business settings.",
+ "WHATSAPP_RECONFIGURE_BUTTON": "Reconfigure",
+ "WHATSAPP_CONNECT_TITLE": "Connect to WhatsApp Business",
+ "WHATSAPP_CONNECT_SUBHEADER": "Upgrade to WhatsApp embedded signup for easier management.",
+ "WHATSAPP_CONNECT_DESCRIPTION": "Connect this inbox to WhatsApp Business for enhanced features and easier management.",
+ "WHATSAPP_CONNECT_BUTTON": "連接",
+ "WHATSAPP_CONNECT_SUCCESS": "Successfully connected to WhatsApp Business!",
+ "WHATSAPP_CONNECT_ERROR": "Failed to connect to WhatsApp Business. Please try again.",
+ "WHATSAPP_RECONFIGURE_SUCCESS": "Successfully reconfigured WhatsApp Business!",
+ "WHATSAPP_RECONFIGURE_ERROR": "Failed to reconfigure WhatsApp Business. Please try again.",
+ "WHATSAPP_APP_ID_MISSING": "WhatsApp App ID is not configured. Please contact your administrator.",
+ "WHATSAPP_CONFIG_ID_MISSING": "WhatsApp Configuration ID is not configured. Please contact your administrator.",
+ "WHATSAPP_LOGIN_CANCELLED": "WhatsApp login was cancelled. Please try again.",
"WHATSAPP_WEBHOOK_TITLE": "Webhook Verification Token",
"WHATSAPP_WEBHOOK_SUBHEADER": "This token is used to verify the authenticity of the webhook endpoint.",
"WHATSAPP_TEMPLATES_SYNC_TITLE": "Sync Templates",
diff --git a/app/javascript/dashboard/i18n/locale/zh_TW/integrations.json b/app/javascript/dashboard/i18n/locale/zh_TW/integrations.json
index 57b6a26f2..df361a65c 100644
--- a/app/javascript/dashboard/i18n/locale/zh_TW/integrations.json
+++ b/app/javascript/dashboard/i18n/locale/zh_TW/integrations.json
@@ -557,6 +557,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No guardrails found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No guardrails found for this search.",
"API": {
"ADD": {
"SUCCESS": "Guardrails added successfully",
@@ -604,6 +605,7 @@
"SEARCH_PLACEHOLDER": "Search..."
},
"EMPTY_MESSAGE": "No response guidelines found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No response guidelines found for this search.",
"API": {
"ADD": {
"SUCCESS": "Response Guidelines added successfully",
@@ -618,6 +620,73 @@
"ERROR": "There was an error deleting response guidelines, please try again."
}
}
+ },
+ "SCENARIOS": {
+ "TITLE": "Scenarios",
+ "DESCRIPTION": "Give your assistant some context—like “what to do when a user is stuck,” or “how to act during a refund request.”",
+ "BREADCRUMB": {
+ "TITLE": "Scenarios"
+ },
+ "BULK_ACTION": {
+ "SELECTED": "{count} item selected | {count} items selected",
+ "SELECT_ALL": "Select all ({count})",
+ "UNSELECT_ALL": "Unselect all ({count})",
+ "BULK_DELETE_BUTTON": "刪除"
+ },
+ "ADD": {
+ "SUGGESTED": {
+ "TITLE": "Example scenarios",
+ "ADD": "Add all",
+ "ADD_SINGLE": "Add this",
+ "TOOLS_USED": "Tools used :"
+ },
+ "NEW": {
+ "CREATE": "Add a scenario",
+ "TITLE": "Create a scenario",
+ "FORM": {
+ "TITLE": {
+ "LABEL": "標題",
+ "PLACEHOLDER": "Enter a name for the scenario",
+ "ERROR": "Scenario name is required"
+ },
+ "DESCRIPTION": {
+ "LABEL": "描述資訊",
+ "PLACEHOLDER": "Describe how and where this scenario will be used",
+ "ERROR": "Scenario description is required"
+ },
+ "INSTRUCTION": {
+ "LABEL": "How to handle",
+ "PLACEHOLDER": "Describe how and where this scenario will be handled",
+ "ERROR": "Scenario content is required"
+ },
+ "CREATE": "建立",
+ "CANCEL": "取消"
+ }
+ }
+ },
+ "UPDATE": {
+ "CANCEL": "取消",
+ "UPDATE": "Update changes"
+ },
+ "LIST": {
+ "SEARCH_PLACEHOLDER": "Search..."
+ },
+ "EMPTY_MESSAGE": "No scenarios found. Create or add examples to begin.",
+ "SEARCH_EMPTY_MESSAGE": "No scenarios found for this search.",
+ "API": {
+ "ADD": {
+ "SUCCESS": "Scenarios added successfully",
+ "ERROR": "There was an error adding scenarios, please try again."
+ },
+ "UPDATE": {
+ "SUCCESS": "Scenarios updated successfully",
+ "ERROR": "There was an error updating scenarios, please try again."
+ },
+ "DELETE": {
+ "SUCCESS": "Scenarios deleted successfully",
+ "ERROR": "There was an error deleting scenarios, please try again."
+ }
+ }
}
},
"DOCUMENTS": {
diff --git a/app/javascript/dashboard/modules/contact/components/ContactDropdownItem.vue b/app/javascript/dashboard/modules/contact/components/ContactDropdownItem.vue
index f68cf9530..29f38f11f 100644
--- a/app/javascript/dashboard/modules/contact/components/ContactDropdownItem.vue
+++ b/app/javascript/dashboard/modules/contact/components/ContactDropdownItem.vue
@@ -1,38 +1,33 @@
-
-
+
{{ name }}
diff --git a/app/javascript/dashboard/modules/widget-preview/components/WidgetFooter.vue b/app/javascript/dashboard/modules/widget-preview/components/WidgetFooter.vue
index 224d9cf5b..6d9e19ac4 100644
--- a/app/javascript/dashboard/modules/widget-preview/components/WidgetFooter.vue
+++ b/app/javascript/dashboard/modules/widget-preview/components/WidgetFooter.vue
@@ -2,7 +2,7 @@
import { ref, computed } from 'vue';
import { useI18n } from 'vue-i18n';
import ResizableTextArea from 'shared/components/ResizableTextArea.vue';
-import Thumbnail from 'dashboard/components/widgets/Thumbnail.vue';
+import Avatar from 'next/avatar/Avatar.vue';
import FluentIcon from 'shared/components/FluentIcon/Index.vue';
const props = defineProps({
@@ -40,7 +40,7 @@ const getStatusText = computed(() => {
{{ config.replyTime }}