iachat/app/javascript/dashboard/i18n/locale/sr/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
869 B
JSON

{
"LOGIN": {
"TITLE": "Login to Chatwoot",
"EMAIL": {
"LABEL": "E-pošta",
"PLACEHOLDER": "example{'@'}companyname.com",
"ERROR": "Molim vas unesite ispravnu adresu e-pošte"
},
"PASSWORD": {
"LABEL": "Lozinka",
"PLACEHOLDER": "Lozinka"
},
"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": "Da li ste zaboravili lozinku?",
"CREATE_NEW_ACCOUNT": "Napravite novi nalog",
"SUBMIT": "Prijava"
}
}