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
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
"TITLE": "Login to Chatwoot",
|
||||
"EMAIL": {
|
||||
"LABEL": "E-pošta",
|
||||
"PLACEHOLDER": "example@companyname.com",
|
||||
"PLACEHOLDER": "example{'@'}companyname.com",
|
||||
"ERROR": "Molim vas unesite ispravnu adresu e-pošte"
|
||||
},
|
||||
"PASSWORD": {
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
},
|
||||
"EMAIL": {
|
||||
"LABEL": "Poslovna e-pošta",
|
||||
"PLACEHOLDER": "Enter your work email address. E.g., bruce@wayne.enterprises",
|
||||
"PLACEHOLDER": "Enter your work email address. E.g., bruce{'@'}wayne{'.'}enterprises",
|
||||
"ERROR": "Please enter a valid work email address."
|
||||
},
|
||||
"PASSWORD": {
|
||||
|
||||
Reference in New Issue
Block a user