iachat/app/javascript/dashboard/i18n/locale/zh_CN/signup.json
Shivam Mishra 0491ffc94e
fix: signup form broken in production (#10206)
`vue-i18n` has a new [linked message
format](https://vue-i18n.intlify.dev/guide/essentials/syntax#linked-messages),
this however conflicts with raw usage an email address like
`hey@chatwoot.com`. The way to solve this as prescribed by then is to
use [literal
interpolation](https://vue-i18n.intlify.dev/guide/essentials/syntax#literal-interpolation),
like `hey{'@'}chatwoot.com`.

This PR does that for the entire translation files
2024-10-03 11:23:30 +05:30

45 lines
1.6 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"REGISTER": {
"TRY_WOOT": "创建新账户",
"TITLE": "注册",
"TESTIMONIAL_HEADER": "只差最后一步就可以了",
"TESTIMONIAL_CONTENT": "您离吸引客户、留住客户和寻找新客户仅一步之遥。",
"TERMS_ACCEPT": "通过创建账户, 你将同意我们的 <a href=\"https://www.chatwoot.com/terms\">T & C</a> 以及 <a href=\"https://www.chatwoot.com/privacy-policy\">隐私政策</a>",
"OAUTH": {
"GOOGLE_SIGNUP": "使用 Google 注册"
},
"COMPANY_NAME": {
"LABEL": "公司名称",
"PLACEHOLDER": "输入您的公司名称。例如, Wayne Enterprises",
"ERROR": "公司名称太短了。"
},
"FULL_NAME": {
"LABEL": "名字",
"PLACEHOLDER": "输入您的全名,例如 Bruce Wayne",
"ERROR": "帐号名称太短了."
},
"EMAIL": {
"LABEL": "工作邮箱",
"PLACEHOLDER": "请输入您有效的电子邮件地址,例如 bruce{'@'}wayne{'.'}enterprises",
"ERROR": "请输入一个有效的电子邮件."
},
"PASSWORD": {
"LABEL": "密码",
"PLACEHOLDER": "密码",
"ERROR": "密码太短了.",
"IS_INVALID_PASSWORD": "密码应至少应该包含1个大写字母、1个小写字母、1个数字和1个特殊字符。"
},
"CONFIRM_PASSWORD": {
"LABEL": "确认密码",
"PLACEHOLDER": "请重新输入一次密码",
"ERROR": "密码不匹配."
},
"API": {
"SUCCESS_MESSAGE": "注册成功",
"ERROR_MESSAGE": "无法与 Woot 服务器建立连接。请重试。"
},
"SUBMIT": "创建新账户",
"HAVE_AN_ACCOUNT": "已经有帐号?"
}
}