chore: update interpolation syntax for i18n files (#10198)
There were two warnings showing up on new teams page 1. `errorMessage` prop was getting invalid value, this was because were short circuting the error message using `&&`, fixed it by using ternary operator 2. `vue-i18n` has deprecated [rails syntax](https://vue-i18n.intlify.dev/guide/essentials/syntax#rails-i18n-format), fixed that warning by removing `%` before `{}` for interpolation > Note: the `vue-i18n` deprecation needs to be handled, but we can do it later
This commit is contained in:
@@ -65,7 +65,7 @@
|
||||
"ERROR_MESSAGE": "无法删除自定义属性。请重试。"
|
||||
},
|
||||
"CONFIRM": {
|
||||
"TITLE": "您确定要删除 - %{attributeName}",
|
||||
"TITLE": "您确定要删除 - {attributeName}",
|
||||
"PLACE_HOLDER": "请输入 {attributeName} 以确认",
|
||||
"MESSAGE": "删除将删除自定义属性",
|
||||
"YES": "删除 ",
|
||||
@@ -92,12 +92,7 @@
|
||||
"CONTACT": "联系人"
|
||||
},
|
||||
"LIST": {
|
||||
"TABLE_HEADER": [
|
||||
"姓名:",
|
||||
"描述信息",
|
||||
"类型",
|
||||
"关键字"
|
||||
],
|
||||
"TABLE_HEADER": ["姓名:", "描述信息", "类型", "关键字"],
|
||||
"BUTTONS": {
|
||||
"EDIT": "编辑",
|
||||
"DELETE": "删除"
|
||||
|
||||
@@ -11,11 +11,7 @@
|
||||
"404": "此账户中没有可用的审计日志。",
|
||||
"TITLE": "管理审计日志",
|
||||
"DESC": "审计日志是 Chatwoot 系统中事件和操作的痕迹。",
|
||||
"TABLE_HEADER": [
|
||||
"User",
|
||||
"Action",
|
||||
"IP 地址"
|
||||
]
|
||||
"TABLE_HEADER": ["User", "Action", "IP 地址"]
|
||||
},
|
||||
"API": {
|
||||
"SUCCESS_MESSAGE": "审计日志获取成功",
|
||||
@@ -23,52 +19,52 @@
|
||||
},
|
||||
"DEFAULT_USER": "系统",
|
||||
"AUTOMATION_RULE": {
|
||||
"ADD": "%{agentName} 创建了一个新的自动化规则 (#%{id})",
|
||||
"EDIT": "%{agentName} 更新了一个自动化规则 (#%{id})",
|
||||
"DELETE": "%{agentName} 删除了一个自动化规则 (#%{id})"
|
||||
"ADD": "{agentName} 创建了一个新的自动化规则 (#{id})",
|
||||
"EDIT": "{agentName} 更新了一个自动化规则 (#{id})",
|
||||
"DELETE": "{agentName} 删除了一个自动化规则 (#{id})"
|
||||
},
|
||||
"ACCOUNT_USER": {
|
||||
"ADD": "%{agentName} 邀请了 %{invitee} 加入账户作为 %{role}",
|
||||
"ADD": "{agentName} 邀请了 {invitee} 加入账户作为 {role}",
|
||||
"EDIT": {
|
||||
"SELF": "%{agentName} 将其 %{attributes} 更改为 %{values}",
|
||||
"OTHER": "%{agentName} 将 %{user} 的 %{attributes} 更改为 %{values}",
|
||||
"DELETED": "%{agentName} changed %{attributes} of a deleted user to %{values}"
|
||||
"SELF": "{agentName} 将其 {attributes} 更改为 {values}",
|
||||
"OTHER": "{agentName} 将 {user} 的 {attributes} 更改为 {values}",
|
||||
"DELETED": "{agentName} changed {attributes} of a deleted user to {values}"
|
||||
}
|
||||
},
|
||||
"INBOX": {
|
||||
"ADD": "%{agentName} 创建了一个新的收件箱 (#%{id})",
|
||||
"EDIT": "%{agentName} 更新了一个收件箱 (#%{id})",
|
||||
"DELETE": "%{agentName} 删除了一个收件箱 (#%{id})"
|
||||
"ADD": "{agentName} 创建了一个新的收件箱 (#{id})",
|
||||
"EDIT": "{agentName} 更新了一个收件箱 (#{id})",
|
||||
"DELETE": "{agentName} 删除了一个收件箱 (#{id})"
|
||||
},
|
||||
"WEBHOOK": {
|
||||
"ADD": "%{agentName} 创建了一个新的 webhook (#%{id})",
|
||||
"EDIT": "%{agentName} 更新了一个 webhook (#%{id})",
|
||||
"DELETE": "%{agentName} 删除了一个 webhook (#%{id})"
|
||||
"ADD": "{agentName} 创建了一个新的 webhook (#{id})",
|
||||
"EDIT": "{agentName} 更新了一个 webhook (#{id})",
|
||||
"DELETE": "{agentName} 删除了一个 webhook (#{id})"
|
||||
},
|
||||
"USER_ACTION": {
|
||||
"SIGN_IN": "%{agentName} 登录",
|
||||
"SIGN_OUT": "%{agentName} 登出"
|
||||
"SIGN_IN": "{agentName} 登录",
|
||||
"SIGN_OUT": "{agentName} 登出"
|
||||
},
|
||||
"TEAM": {
|
||||
"ADD": "%{agentName} 创建了一个新的团队 (#%{id})",
|
||||
"EDIT": "%{agentName} 更新了一个团队 (#%{id})",
|
||||
"DELETE": "%{agentName} 删除了一个团队 (#%{id})"
|
||||
"ADD": "{agentName} 创建了一个新的团队 (#{id})",
|
||||
"EDIT": "{agentName} 更新了一个团队 (#{id})",
|
||||
"DELETE": "{agentName} 删除了一个团队 (#{id})"
|
||||
},
|
||||
"MACRO": {
|
||||
"ADD": "%{agentName} 创建了一个新的宏 (#%{id})",
|
||||
"EDIT": "%{agentName} 更新了一个宏 (#%{id})",
|
||||
"DELETE": "%{agentName} 删除了一个宏 (#%{id})"
|
||||
"ADD": "{agentName} 创建了一个新的宏 (#{id})",
|
||||
"EDIT": "{agentName} 更新了一个宏 (#{id})",
|
||||
"DELETE": "{agentName} 删除了一个宏 (#{id})"
|
||||
},
|
||||
"INBOX_MEMBER": {
|
||||
"ADD": "%{agentName} 将 %{user} 添加到收件箱 (#%{inbox_id})",
|
||||
"REMOVE": "%{agentName} 将 %{user} 从收件箱 (#%{inbox_id}) 中移除"
|
||||
"ADD": "{agentName} 将 {user} 添加到收件箱 (#{inbox_id})",
|
||||
"REMOVE": "{agentName} 将 {user} 从收件箱 (#{inbox_id}) 中移除"
|
||||
},
|
||||
"TEAM_MEMBER": {
|
||||
"ADD": "%{agentName} 将 %{user} 添加到团队 (#%{team_id})",
|
||||
"REMOVE": "%{agentName} 将 %{user} 从团队 (#%{team_id}) 中移除"
|
||||
"ADD": "{agentName} 将 {user} 添加到团队 (#{team_id})",
|
||||
"REMOVE": "{agentName} 将 {user} 从团队 (#{team_id}) 中移除"
|
||||
},
|
||||
"ACCOUNT": {
|
||||
"EDIT": "%{agentName} 更新了账户配置 (#%{id})"
|
||||
"EDIT": "{agentName} 更新了账户配置 (#{id})"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"BULK_ACTION": {
|
||||
"CONVERSATIONS_SELECTED": "已选择 %{conversationCount} 个对话",
|
||||
"CONVERSATIONS_SELECTED": "已选择 {conversationCount} 个对话",
|
||||
"AGENT_SELECT_LABEL": "选择客服代表",
|
||||
"ASSIGN_CONFIRMATION_LABEL": "您确定要将 %{conversationCount} 个 %{conversationLabel} 分配给",
|
||||
"UNASSIGN_CONFIRMATION_LABEL": "您确定要取消分配 %{conversationCount} 个 %{conversationLabel} 吗?",
|
||||
"ASSIGN_CONFIRMATION_LABEL": "您确定要将 {conversationCount} 个 {conversationLabel} 分配给",
|
||||
"UNASSIGN_CONFIRMATION_LABEL": "您确定要取消分配 {conversationCount} 个 {conversationLabel} 吗?",
|
||||
"GO_BACK_LABEL": "返回",
|
||||
"ASSIGN_LABEL": "分配",
|
||||
"YES": "是",
|
||||
|
||||
@@ -367,8 +367,8 @@
|
||||
},
|
||||
"SUMMARY": {
|
||||
"TITLE": "总结",
|
||||
"DELETE_WARNING": "<strong>%{primaryContactName}</strong> 的联系信息将被删除。",
|
||||
"ATTRIBUTE_WARNING": "<strong>%{primaryContactName}</strong> 的联系信息将拷贝到 <strong>%{parentContactName}</strong>。"
|
||||
"DELETE_WARNING": "<strong>{primaryContactName}</strong> 的联系信息将被删除。",
|
||||
"ATTRIBUTE_WARNING": "<strong>{primaryContactName}</strong> 的联系信息将拷贝到 <strong>{parentContactName}</strong>。"
|
||||
},
|
||||
"SEARCH": {
|
||||
"ERROR": "ERROR_MESSAGE"
|
||||
|
||||
@@ -101,7 +101,7 @@
|
||||
"SELECT_PLACEHOLDER": "啥都没有",
|
||||
"INPUT_PLACEHOLDER": "选择优先级",
|
||||
"NO_RESULTS": "没有检索到相关信息",
|
||||
"SUCCESSFUL": "Changed priority of conversation id %{conversationId} to %{priority}",
|
||||
"SUCCESSFUL": "Changed priority of conversation id {conversationId} to {priority}",
|
||||
"FAILED": "无法更改优先级。请重试。"
|
||||
}
|
||||
},
|
||||
@@ -122,15 +122,15 @@
|
||||
"ASSIGN_TEAM": "分配一个团队",
|
||||
"API": {
|
||||
"AGENT_ASSIGNMENT": {
|
||||
"SUCCESFUL": "对话 ID %{conversationId} 已分配给 \"%{agentName}\"",
|
||||
"SUCCESFUL": "对话 ID {conversationId} 已分配给 \"{agentName}\"",
|
||||
"FAILED": "无法分配客服,请再试。"
|
||||
},
|
||||
"LABEL_ASSIGNMENT": {
|
||||
"SUCCESFUL": "将标签 #%{labelName} 分配给对话 ID %{conversationId}",
|
||||
"SUCCESFUL": "将标签 #{labelName} 分配给对话 ID {conversationId}",
|
||||
"FAILED": "无法分配标签。请再试。"
|
||||
},
|
||||
"TEAM_ASSIGNMENT": {
|
||||
"SUCCESFUL": "将团队 \"%{team}\" 分配给对话 ID %{conversationId}",
|
||||
"SUCCESFUL": "将团队 \"{team}\" 分配给对话 ID {conversationId}",
|
||||
"FAILED": "无法分配团队。请重试。"
|
||||
}
|
||||
}
|
||||
@@ -239,11 +239,11 @@
|
||||
}
|
||||
},
|
||||
"ONBOARDING": {
|
||||
"TITLE": "您好 👋, 欢迎来到 %{installationName}!",
|
||||
"DESCRIPTION": "感谢您注册。我们希望您能够充分使用 %{installationName}。 这里有几件您可以在 %{installationName} 做的事情,让体验变得愉快。",
|
||||
"GREETING_MORNING": "👋 Good morning, %{name}. Welcome to %{installationName}.",
|
||||
"GREETING_AFTERNOON": "👋 Good afternoon, %{name}. Welcome to %{installationName}.",
|
||||
"GREETING_EVENING": "👋 Good evening, %{name}. Welcome to %{installationName}.",
|
||||
"TITLE": "您好 👋, 欢迎来到 {installationName}!",
|
||||
"DESCRIPTION": "感谢您注册。我们希望您能够充分使用 {installationName}。 这里有几件您可以在 {installationName} 做的事情,让体验变得愉快。",
|
||||
"GREETING_MORNING": "👋 Good morning, {name}. Welcome to {installationName}.",
|
||||
"GREETING_AFTERNOON": "👋 Good afternoon, {name}. Welcome to {installationName}.",
|
||||
"GREETING_EVENING": "👋 Good evening, {name}. Welcome to {installationName}.",
|
||||
"READ_LATEST_UPDATES": "阅读我们的最新升级日志",
|
||||
"ALL_CONVERSATION": {
|
||||
"TITLE": "您的所有对话都在一个地方",
|
||||
@@ -317,10 +317,10 @@
|
||||
"SIDEBAR_TITLE": "对话参与者",
|
||||
"NO_RECORDS_FOUND": "没有检索到相关信息",
|
||||
"ADD_PARTICIPANTS": "选择参与者",
|
||||
"REMANING_PARTICIPANTS_TEXT": "+%{count} 其他人",
|
||||
"REMANING_PARTICIPANT_TEXT": "+%{count} 其他",
|
||||
"TOTAL_PARTICIPANTS_TEXT": "有%{count}人参与。",
|
||||
"TOTAL_PARTICIPANT_TEXT": "有%{count}人参与。",
|
||||
"REMANING_PARTICIPANTS_TEXT": "+{count} 其他人",
|
||||
"REMANING_PARTICIPANT_TEXT": "+{count} 其他",
|
||||
"TOTAL_PARTICIPANTS_TEXT": "有{count}人参与。",
|
||||
"TOTAL_PARTICIPANT_TEXT": "有{count}人参与。",
|
||||
"NO_PARTICIPANTS_TEXT": "没有人参与!",
|
||||
"WATCH_CONVERSATION": "加入对话",
|
||||
"YOU_ARE_WATCHING": "你正在参与",
|
||||
|
||||
@@ -48,7 +48,7 @@
|
||||
"CUSTOM_EMAIL_DOMAIN_ENABLED": "您现在可以在您的自定义域名的电子邮件中接收消息。"
|
||||
}
|
||||
},
|
||||
"UPDATE_CHATWOOT": "Chatwoot 有可用更新%{latestChatwootVersion},请更新您的应用。",
|
||||
"UPDATE_CHATWOOT": "Chatwoot 有可用更新{latestChatwootVersion},请更新您的应用。",
|
||||
"LEARN_MORE": "了解更多",
|
||||
"PAYMENT_PENDING": "您的付款尚未完成。请更新您的付款信息以继续使用Chatwoot",
|
||||
"LIMITS_UPGRADE": "您的账户已超过使用限制,请升级您的计划以继续使用Chatwoot",
|
||||
@@ -75,12 +75,7 @@
|
||||
"LIST": {
|
||||
"LOADING_MESSAGE": "正在加载通知...",
|
||||
"404": "没有通知",
|
||||
"TABLE_HEADER": [
|
||||
"姓名:",
|
||||
"电话号码",
|
||||
"会话",
|
||||
"上次联系"
|
||||
]
|
||||
"TABLE_HEADER": ["姓名:", "电话号码", "会话", "上次联系"]
|
||||
},
|
||||
"TYPE_LABEL": {
|
||||
"conversation_creation": "新建对话",
|
||||
|
||||
@@ -84,7 +84,7 @@
|
||||
},
|
||||
"ARTICLE_SEARCH_RESULT": {
|
||||
"UNCATEGORIZED": "Uncategorized",
|
||||
"SEARCH_RESULTS": "Search results for %{query}",
|
||||
"SEARCH_RESULTS": "Search results for {query}",
|
||||
"EMPTY_TEXT": "Search for articles to insert into replies.",
|
||||
"SEARCH_LOADER": "搜索中...",
|
||||
"INSERT_ARTICLE": "Insert",
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"INTEGRATION_APPS": {
|
||||
"FETCHING": "Fetching Integrations",
|
||||
"NO_HOOK_CONFIGURED": "There are no %{integrationId} integrations configured in this account.",
|
||||
"NO_HOOK_CONFIGURED": "There are no {integrationId} integrations configured in this account.",
|
||||
"HEADER": "Applications",
|
||||
"STATUS": {
|
||||
"ENABLED": "已启用",
|
||||
@@ -56,7 +56,7 @@
|
||||
"BUTTON_TEXT": "Disconnect"
|
||||
},
|
||||
"SIDEBAR_DESCRIPTION": {
|
||||
"DIALOGFLOW": "Dialogflow is a natural language understanding platform that makes it easy to design and integrate a conversational user interface into your mobile app, web application, device, bot, interactive voice response system, and so on. <br /> <br /> Dialogflow integration with %{installationName} allows you to configure a Dialogflow bot with your inboxes which lets the bot handle the queries initially and hand them over to an agent when needed. Dialogflow can be used to qualifying the leads, reduce the workload of agents by providing frequently asked questions etc. <br /> <br /> To add Dialogflow, you need to create a Service Account in your Google project console and share the credentials. Please refer to the Dialogflow docs for more information."
|
||||
"DIALOGFLOW": "Dialogflow is a natural language understanding platform that makes it easy to design and integrate a conversational user interface into your mobile app, web application, device, bot, interactive voice response system, and so on. <br /> <br /> Dialogflow integration with {installationName} allows you to configure a Dialogflow bot with your inboxes which lets the bot handle the queries initially and hand them over to an agent when needed. Dialogflow can be used to qualifying the leads, reduce the workload of agents by providing frequently asked questions etc. <br /> <br /> To add Dialogflow, you need to create a Service Account in your Google project console and share the credentials. Please refer to the Dialogflow docs for more information."
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -47,10 +47,7 @@
|
||||
"LIST": {
|
||||
"404": "此帐户没有配置Webhooks。",
|
||||
"TITLE": "管理 webhooks",
|
||||
"TABLE_HEADER": [
|
||||
"Webhook 端点",
|
||||
"操作"
|
||||
]
|
||||
"TABLE_HEADER": ["Webhook 端点", "操作"]
|
||||
},
|
||||
"EDIT": {
|
||||
"BUTTON_TEXT": "编辑",
|
||||
@@ -76,7 +73,7 @@
|
||||
},
|
||||
"CONFIRM": {
|
||||
"TITLE": "确认删除",
|
||||
"MESSAGE": "Are you sure to delete the webhook? (%{webhookURL})",
|
||||
"MESSAGE": "Are you sure to delete the webhook? ({webhookURL})",
|
||||
"YES": "是,删除 ",
|
||||
"NO": "否,保留它"
|
||||
}
|
||||
@@ -114,7 +111,7 @@
|
||||
},
|
||||
"OPEN_AI": {
|
||||
"AI_ASSIST": "AI 助手",
|
||||
"WITH_AI": " %{option} with AI ",
|
||||
"WITH_AI": " {option} with AI ",
|
||||
"OPTIONS": {
|
||||
"REPLY_SUGGESTION": "Reply Suggestion",
|
||||
"SUMMARIZE": "Summarize",
|
||||
@@ -183,10 +180,7 @@
|
||||
"LIST": {
|
||||
"404": "There are no dashboard apps configured on this account yet",
|
||||
"LOADING": "Fetching dashboard apps...",
|
||||
"TABLE_HEADER": [
|
||||
"姓名:",
|
||||
"Endpoint"
|
||||
],
|
||||
"TABLE_HEADER": ["姓名:", "Endpoint"],
|
||||
"EDIT_TOOLTIP": "Edit app",
|
||||
"DELETE_TOOLTIP": "Delete app"
|
||||
},
|
||||
@@ -216,7 +210,7 @@
|
||||
"CONFIRM_YES": "Yes, delete it",
|
||||
"CONFIRM_NO": "No, keep it",
|
||||
"TITLE": "Confirm deletion",
|
||||
"MESSAGE": "Are you sure to delete the app - %{appName}?",
|
||||
"MESSAGE": "Are you sure to delete the app - {appName}?",
|
||||
"API_SUCCESS": "Dashboard app deleted successfully",
|
||||
"API_ERROR": "We couldn't delete the app. Please try again later"
|
||||
}
|
||||
@@ -235,7 +229,7 @@
|
||||
"ERROR": "There was an error fetching the linear issues, please try again",
|
||||
"LINK_SUCCESS": "Issue linked successfully",
|
||||
"LINK_ERROR": "There was an error linking the issue, please try again",
|
||||
"LINK_TITLE": "Conversation (#%{conversationId}) with %{name}"
|
||||
"LINK_TITLE": "Conversation (#{conversationId}) with {name}"
|
||||
},
|
||||
"ADD_OR_LINK": {
|
||||
"TITLE": "Create/link linear issue",
|
||||
@@ -294,7 +288,7 @@
|
||||
"PRIORITY": "优先级",
|
||||
"ASSIGNEE": "Assignee",
|
||||
"LABELS": "标签",
|
||||
"CREATED_AT": "Created at %{createdAt}"
|
||||
"CREATED_AT": "Created at {createdAt}"
|
||||
},
|
||||
"UNLINK": {
|
||||
"TITLE": "Unlink",
|
||||
|
||||
@@ -23,13 +23,13 @@
|
||||
"NAME": "首次响应时间",
|
||||
"DESC": "( 平均)",
|
||||
"INFO_TEXT": "用于计算的对话总数:",
|
||||
"TOOLTIP_TEXT": "First Response Time is %{metricValue} (based on %{conversationCount} conversations)"
|
||||
"TOOLTIP_TEXT": "First Response Time is {metricValue} (based on {conversationCount} conversations)"
|
||||
},
|
||||
"RESOLUTION_TIME": {
|
||||
"NAME": "解决时间",
|
||||
"DESC": "( 平均)",
|
||||
"INFO_TEXT": "用于计算的对话总数:",
|
||||
"TOOLTIP_TEXT": "Resolution Time is %{metricValue} (based on %{conversationCount} conversations)"
|
||||
"TOOLTIP_TEXT": "Resolution Time is {metricValue} (based on {conversationCount} conversations)"
|
||||
},
|
||||
"RESOLUTION_COUNT": {
|
||||
"NAME": "已解决的数量",
|
||||
@@ -45,7 +45,7 @@
|
||||
},
|
||||
"REPLY_TIME": {
|
||||
"NAME": "Customer waiting time",
|
||||
"TOOLTIP_TEXT": "Waiting time is %{metricValue} (based on %{conversationCount} replies)"
|
||||
"TOOLTIP_TEXT": "Waiting time is {metricValue} (based on {conversationCount} replies)"
|
||||
}
|
||||
},
|
||||
"DATE_RANGE_OPTIONS": {
|
||||
@@ -167,13 +167,13 @@
|
||||
"NAME": "首次响应时间",
|
||||
"DESC": "( 平均)",
|
||||
"INFO_TEXT": "用于计算的对话总数:",
|
||||
"TOOLTIP_TEXT": "First Response Time is %{metricValue} (based on %{conversationCount} conversations)"
|
||||
"TOOLTIP_TEXT": "First Response Time is {metricValue} (based on {conversationCount} conversations)"
|
||||
},
|
||||
"RESOLUTION_TIME": {
|
||||
"NAME": "解决时间",
|
||||
"DESC": "( 平均)",
|
||||
"INFO_TEXT": "用于计算的对话总数:",
|
||||
"TOOLTIP_TEXT": "Resolution Time is %{metricValue} (based on %{conversationCount} conversations)"
|
||||
"TOOLTIP_TEXT": "Resolution Time is {metricValue} (based on {conversationCount} conversations)"
|
||||
},
|
||||
"RESOLUTION_COUNT": {
|
||||
"NAME": "已解决的数量",
|
||||
@@ -234,13 +234,13 @@
|
||||
"NAME": "首次响应时间",
|
||||
"DESC": "( 平均)",
|
||||
"INFO_TEXT": "用于计算的对话总数:",
|
||||
"TOOLTIP_TEXT": "First Response Time is %{metricValue} (based on %{conversationCount} conversations)"
|
||||
"TOOLTIP_TEXT": "First Response Time is {metricValue} (based on {conversationCount} conversations)"
|
||||
},
|
||||
"RESOLUTION_TIME": {
|
||||
"NAME": "解决时间",
|
||||
"DESC": "( 平均)",
|
||||
"INFO_TEXT": "用于计算的对话总数:",
|
||||
"TOOLTIP_TEXT": "Resolution Time is %{metricValue} (based on %{conversationCount} conversations)"
|
||||
"TOOLTIP_TEXT": "Resolution Time is {metricValue} (based on {conversationCount} conversations)"
|
||||
},
|
||||
"RESOLUTION_COUNT": {
|
||||
"NAME": "已解决的数量",
|
||||
@@ -301,13 +301,13 @@
|
||||
"NAME": "首次响应时间",
|
||||
"DESC": "( 平均)",
|
||||
"INFO_TEXT": "用于计算的对话总数:",
|
||||
"TOOLTIP_TEXT": "First Response Time is %{metricValue} (based on %{conversationCount} conversations)"
|
||||
"TOOLTIP_TEXT": "First Response Time is {metricValue} (based on {conversationCount} conversations)"
|
||||
},
|
||||
"RESOLUTION_TIME": {
|
||||
"NAME": "解决时间",
|
||||
"DESC": "( 平均)",
|
||||
"INFO_TEXT": "用于计算的对话总数:",
|
||||
"TOOLTIP_TEXT": "Resolution Time is %{metricValue} (based on %{conversationCount} conversations)"
|
||||
"TOOLTIP_TEXT": "Resolution Time is {metricValue} (based on {conversationCount} conversations)"
|
||||
},
|
||||
"RESOLUTION_COUNT": {
|
||||
"NAME": "已解决的数量",
|
||||
@@ -368,13 +368,13 @@
|
||||
"NAME": "首次响应时间",
|
||||
"DESC": "( 平均)",
|
||||
"INFO_TEXT": "用于计算的对话总数:",
|
||||
"TOOLTIP_TEXT": "First Response Time is %{metricValue} (based on %{conversationCount} conversations)"
|
||||
"TOOLTIP_TEXT": "First Response Time is {metricValue} (based on {conversationCount} conversations)"
|
||||
},
|
||||
"RESOLUTION_TIME": {
|
||||
"NAME": "解决时间",
|
||||
"DESC": "( 平均)",
|
||||
"INFO_TEXT": "用于计算的对话总数:",
|
||||
"TOOLTIP_TEXT": "Resolution Time is %{metricValue} (based on %{conversationCount} conversations)"
|
||||
"TOOLTIP_TEXT": "Resolution Time is {metricValue} (based on {conversationCount} conversations)"
|
||||
},
|
||||
"RESOLUTION_COUNT": {
|
||||
"NAME": "已解决的数量",
|
||||
@@ -480,8 +480,8 @@
|
||||
"CONVERSATION_HEATMAP": {
|
||||
"HEADER": "Conversation Traffic",
|
||||
"NO_CONVERSATIONS": "No conversations",
|
||||
"CONVERSATION": "%{count} conversation",
|
||||
"CONVERSATIONS": "%{count} conversations",
|
||||
"CONVERSATION": "{count} conversation",
|
||||
"CONVERSATIONS": "{count} conversations",
|
||||
"DOWNLOAD_REPORT": "Download report"
|
||||
},
|
||||
"AGENT_CONVERSATIONS": {
|
||||
|
||||
@@ -12,8 +12,8 @@
|
||||
"MESSAGES": "消息"
|
||||
},
|
||||
"SEARCHING_DATA": "搜索中",
|
||||
"EMPTY_STATE": "No %{item} found for query '%{query}'",
|
||||
"EMPTY_STATE_FULL": "No results found for query '%{query}'",
|
||||
"EMPTY_STATE": "No {item} found for query '{query}'",
|
||||
"EMPTY_STATE_FULL": "No results found for query '{query}'",
|
||||
"PLACEHOLDER_KEYBINDING": "/ to focus",
|
||||
"INPUT_PLACEHOLDER": "Type 3 or more characters to search",
|
||||
"EMPTY_STATE_DEFAULT": "Search by conversation id, email, phone number, messages for better search results. ",
|
||||
|
||||
@@ -145,11 +145,7 @@
|
||||
},
|
||||
"AVAILABILITY": {
|
||||
"LABEL": "有效的",
|
||||
"STATUSES_LIST": [
|
||||
"在线的",
|
||||
"忙碌中",
|
||||
"离线的"
|
||||
],
|
||||
"STATUSES_LIST": ["在线的", "忙碌中", "离线的"],
|
||||
"SET_AVAILABILITY_SUCCESS": "Availability has been set successfully",
|
||||
"SET_AVAILABILITY_ERROR": "Couldn't set availability, please try again"
|
||||
},
|
||||
@@ -301,7 +297,7 @@
|
||||
"TITLE": "计费方式",
|
||||
"CURRENT_PLAN": {
|
||||
"TITLE": "当前计划",
|
||||
"PLAN_NOTE": "You are currently subscribed to the **%{plan}** plan with **%{quantity}** licenses"
|
||||
"PLAN_NOTE": "You are currently subscribed to the **{plan}** plan with **{quantity}** licenses"
|
||||
},
|
||||
"MANAGE_SUBSCRIPTION": {
|
||||
"TITLE": "管理您的订阅",
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
},
|
||||
"AGENTS": {
|
||||
"BUTTON_TEXT": "添加客服至您的团队",
|
||||
"TITLE": "添加客服至您的团队 - %{teamName}",
|
||||
"TITLE": "添加客服至您的团队 - {teamName}",
|
||||
"DESC": "添加客服到您新创建的团队。这让您能够作为一个团队在对话中进行合作,在同一对话中获得新事件的通知。"
|
||||
},
|
||||
"WIZARD": [
|
||||
@@ -46,7 +46,7 @@
|
||||
},
|
||||
"AGENTS": {
|
||||
"BUTTON_TEXT": "团队中更新客服",
|
||||
"TITLE": "添加客服至您的团队 - %{teamName}",
|
||||
"TITLE": "添加客服至您的团队 - {teamName}",
|
||||
"DESC": "Add Agents to your newly created team. All the added agents will be notified when a conversation is assigned to this team."
|
||||
},
|
||||
"WIZARD": [
|
||||
@@ -77,14 +77,14 @@
|
||||
"ADD_AGENTS": "正在向收件箱添加客服...",
|
||||
"SELECT": "选择",
|
||||
"SELECT_ALL": "选择全部客服",
|
||||
"SELECTED_COUNT": "%{selected} out of %{total} agents selected."
|
||||
"SELECTED_COUNT": "{selected} out of {total} agents selected."
|
||||
},
|
||||
"ADD": {
|
||||
"TITLE": "添加客服至您的团队 - %{teamName}",
|
||||
"TITLE": "添加客服至您的团队 - {teamName}",
|
||||
"DESC": "添加客服到您新创建的团队。这让您能够作为一个团队在对话中进行合作,在同一对话中获得新事件的通知。",
|
||||
"SELECT": "选择",
|
||||
"SELECT_ALL": "选择全部客服",
|
||||
"SELECTED_COUNT": "%{selected} out of %{total} agents selected.",
|
||||
"SELECTED_COUNT": "{selected} out of {total} agents selected.",
|
||||
"BUTTON_TEXT": "添加客服代理",
|
||||
"AGENT_VALIDATION_ERROR": "至少选择一个客服。"
|
||||
},
|
||||
|
||||
@@ -1,25 +1,25 @@
|
||||
{
|
||||
"WHATSAPP_TEMPLATES": {
|
||||
"MODAL": {
|
||||
"TITLE": "Whatsapp Templates",
|
||||
"SUBTITLE": "Select the whatsapp template you want to send",
|
||||
"TEMPLATE_SELECTED_SUBTITLE": "Process %{templateName}"
|
||||
},
|
||||
"PICKER": {
|
||||
"SEARCH_PLACEHOLDER": "Search Templates",
|
||||
"NO_TEMPLATES_FOUND": "No templates found for",
|
||||
"LABELS": {
|
||||
"LANGUAGE": "Language",
|
||||
"TEMPLATE_BODY": "Template Body",
|
||||
"CATEGORY": "类别"
|
||||
}
|
||||
},
|
||||
"PARSER": {
|
||||
"VARIABLES_LABEL": "参数",
|
||||
"VARIABLE_PLACEHOLDER": "Enter %{variable} value",
|
||||
"GO_BACK_LABEL": "返回",
|
||||
"SEND_MESSAGE_LABEL": "发送消息",
|
||||
"FORM_ERROR_MESSAGE": "Please fill all variables before sending"
|
||||
}
|
||||
"WHATSAPP_TEMPLATES": {
|
||||
"MODAL": {
|
||||
"TITLE": "Whatsapp Templates",
|
||||
"SUBTITLE": "Select the whatsapp template you want to send",
|
||||
"TEMPLATE_SELECTED_SUBTITLE": "Process {templateName}"
|
||||
},
|
||||
"PICKER": {
|
||||
"SEARCH_PLACEHOLDER": "Search Templates",
|
||||
"NO_TEMPLATES_FOUND": "No templates found for",
|
||||
"LABELS": {
|
||||
"LANGUAGE": "Language",
|
||||
"TEMPLATE_BODY": "Template Body",
|
||||
"CATEGORY": "类别"
|
||||
}
|
||||
},
|
||||
"PARSER": {
|
||||
"VARIABLES_LABEL": "参数",
|
||||
"VARIABLE_PLACEHOLDER": "Enter {variable} value",
|
||||
"GO_BACK_LABEL": "返回",
|
||||
"SEND_MESSAGE_LABEL": "发送消息",
|
||||
"FORM_ERROR_MESSAGE": "Please fill all variables before sending"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user