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
907 B
JSON
28 lines
907 B
JSON
{
|
|
"LOGIN": {
|
|
"TITLE": "Inloggen bij Chatwoot",
|
|
"EMAIL": {
|
|
"LABEL": "E-mailadres",
|
|
"PLACEHOLDER": "voorbeeld{'@'}bedrijfsnaam.nl",
|
|
"ERROR": "Voer een geldig e-mailadres in"
|
|
},
|
|
"PASSWORD": {
|
|
"LABEL": "Wachtwoord",
|
|
"PLACEHOLDER": "Wachtwoord"
|
|
},
|
|
"API": {
|
|
"SUCCESS_MESSAGE": "Inloggen geslaagd",
|
|
"ERROR_MESSAGE": "Kan geen verbinding maken met de Woot server. Probeer het opnieuw.",
|
|
"UNAUTH": "Gebruikersnaam of wachtwoord is onjuist. Probeer het opnieuw."
|
|
},
|
|
"OAUTH": {
|
|
"GOOGLE_LOGIN": "Inloggen met Google",
|
|
"BUSINESS_ACCOUNTS_ONLY": "Gebruik het e-mailadres van uw bedrijf om in te loggen",
|
|
"NO_ACCOUNT_FOUND": "Wij hebben geen e-mailadres gevonden voor uw e-mailadres."
|
|
},
|
|
"FORGOT_PASSWORD": "Wachtwoord vergeten?",
|
|
"CREATE_NEW_ACCOUNT": "Nieuw account aanmaken",
|
|
"SUBMIT": "Inloggen"
|
|
}
|
|
}
|