Files
leadchat/app/javascript/dashboard/i18n/locale/zh_TW/login.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

28 lines
842 B
JSON

{
"LOGIN": {
"TITLE": "登入到 Chatwoot",
"EMAIL": {
"LABEL": "Email",
"PLACEHOLDER": "example{'@'}companyname.com",
"ERROR": "請輸入一個有效的電子信箱"
},
"PASSWORD": {
"LABEL": "密碼",
"PLACEHOLDER": "密碼"
},
"API": {
"SUCCESS_MESSAGE": "Login successful",
"ERROR_MESSAGE": "Could not connect to Woot server. Please try again.",
"UNAUTH": "Username or password is incorrect. Please try again."
},
"OAUTH": {
"GOOGLE_LOGIN": "Login with Google",
"BUSINESS_ACCOUNTS_ONLY": "Please use your company email address to login",
"NO_ACCOUNT_FOUND": "We couldn't find an account for your email address."
},
"FORGOT_PASSWORD": "忘記密碼了?",
"CREATE_NEW_ACCOUNT": "建立新帳戶",
"SUBMIT": "登入"
}
}