`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
28 lines
1020 B
JSON
28 lines
1020 B
JSON
{
|
|
"LOGIN": {
|
|
"TITLE": "Login to Chatwoot",
|
|
"EMAIL": {
|
|
"LABEL": "อีเมล์",
|
|
"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": "เข้าสู่ระบบ"
|
|
}
|
|
}
|