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
953 B
JSON
28 lines
953 B
JSON
{
|
|
"LOGIN": {
|
|
"TITLE": "Login to Chatwoot",
|
|
"EMAIL": {
|
|
"LABEL": "E-pasts",
|
|
"PLACEHOLDER": "piemers{'@'}firmasnosaukums.com",
|
|
"ERROR": "Lūdzu, ievadiet derīgu e-pasta adresi"
|
|
},
|
|
"PASSWORD": {
|
|
"LABEL": "Parole",
|
|
"PLACEHOLDER": "Parole"
|
|
},
|
|
"API": {
|
|
"SUCCESS_MESSAGE": "Pieteikšanās veiksmīga",
|
|
"ERROR_MESSAGE": "Nevarēja izveidot savienojumu ar Woot serveri. Lūdzu mēģiniet vēlreiz.",
|
|
"UNAUTH": "Lietotājvārds vai parole ir nepareiza. Lūdzu mēģiniet vēlreiz."
|
|
},
|
|
"OAUTH": {
|
|
"GOOGLE_LOGIN": "Pieslēgties, izmantojot Google",
|
|
"BUSINESS_ACCOUNTS_ONLY": "Lai pieslēgtos, lūdzu, izmantojiet sava uzņēmuma e-pasta adresi",
|
|
"NO_ACCOUNT_FOUND": "Mēs nevarējām atrast Jūsu e-pasta adreses kontu."
|
|
},
|
|
"FORGOT_PASSWORD": "Aizmirsāt savu paroli?",
|
|
"CREATE_NEW_ACCOUNT": "Izveidot jaunu kontu",
|
|
"SUBMIT": "Pierakstīties"
|
|
}
|
|
}
|