Vue i18n has a new [linked message syntax.](https://vue-i18n.intlify.dev/guide/essentials/syntax.html#linked-messages) When it encounters `@` it assumes that we're trying to use a linked message. And tries to parse it as such, in any case, it breaks since the syntax is not valid and the params are not present. So it causes an error. This works on dev but on production the error is bubbled up to the top and rendering breaks. A lot of folks use Chatwoot with default locale set in the env, this surfaced the issue for the languages for which the syntax was not updated Fixes: https://github.com/chatwoot/chatwoot/issues/10313
28 lines
979 B
JSON
28 lines
979 B
JSON
{
|
|
"LOGIN": {
|
|
"TITLE": "Entrar no Chatwoot",
|
|
"EMAIL": {
|
|
"LABEL": "E-mail",
|
|
"PLACEHOLDER": "exemplo{'@'}nomedaempresa.pt",
|
|
"ERROR": "Por favor, insira um endereço de e-mail válido"
|
|
},
|
|
"PASSWORD": {
|
|
"LABEL": "Palavra-passe",
|
|
"PLACEHOLDER": "Palavra-passe"
|
|
},
|
|
"API": {
|
|
"SUCCESS_MESSAGE": "Login bem-sucedido",
|
|
"ERROR_MESSAGE": "Não foi possível conectar ao servidor Woot. Por favor, tente novamente.",
|
|
"UNAUTH": "E-mail ou palavra-passe incorretos. Por favor, tente novamente."
|
|
},
|
|
"OAUTH": {
|
|
"GOOGLE_LOGIN": "Iniciar sessão com o Google",
|
|
"BUSINESS_ACCOUNTS_ONLY": "Por favor, use o endereço de e-mail da empresa para iniciar sessão",
|
|
"NO_ACCOUNT_FOUND": "Não conseguimos encontrar uma conta com o seu endereço de e-mail."
|
|
},
|
|
"FORGOT_PASSWORD": "Esqueceu-se da sua palavra-passe?",
|
|
"CREATE_NEW_ACCOUNT": "Criar nova conta",
|
|
"SUBMIT": "Iniciar sessão"
|
|
}
|
|
}
|