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
985 B
JSON
28 lines
985 B
JSON
{
|
|
"LOGIN": {
|
|
"TITLE": "Conectează-te la Chatwoot",
|
|
"EMAIL": {
|
|
"LABEL": "E-mail",
|
|
"PLACEHOLDER": "exemplu{'@'}companyname.com",
|
|
"ERROR": "Vă rugăm să introduceți o adresă de e-mail validă"
|
|
},
|
|
"PASSWORD": {
|
|
"LABEL": "Parola",
|
|
"PLACEHOLDER": "Parola"
|
|
},
|
|
"API": {
|
|
"SUCCESS_MESSAGE": "Autentificare reușită",
|
|
"ERROR_MESSAGE": "Nu s-a putut conecta la serverul Woot. Vă rugăm să încercați din nou.",
|
|
"UNAUTH": "Numele de utilizator sau parola sunt incorecte. Vă rugăm să încercați din nou."
|
|
},
|
|
"OAUTH": {
|
|
"GOOGLE_LOGIN": "Autentifica-te cu Google+",
|
|
"BUSINESS_ACCOUNTS_ONLY": "Vă rugăm să utilizați adresa de e-mail a companiei pentru a vă autentifica",
|
|
"NO_ACCOUNT_FOUND": "Nu am putut găsi un cont pentru adresa ta de e-mail."
|
|
},
|
|
"FORGOT_PASSWORD": "Ai uitat parola?",
|
|
"CREATE_NEW_ACCOUNT": "Creează un cont nou",
|
|
"SUBMIT": "Conectează-te"
|
|
}
|
|
}
|