There were two warnings showing up on new teams page 1. `errorMessage` prop was getting invalid value, this was because were short circuting the error message using `&&`, fixed it by using ternary operator 2. `vue-i18n` has deprecated [rails syntax](https://vue-i18n.intlify.dev/guide/essentials/syntax#rails-i18n-format), fixed that warning by removing `%` before `{}` for interpolation > Note: the `vue-i18n` deprecation needs to be handled, but we can do it later
20 lines
636 B
JSON
20 lines
636 B
JSON
{
|
|
"SURVEY": {
|
|
"DESCRIPTION": "Dragi korisniče 👋, odvojite nekoliko trenutaka i podijelite dojam razogovora koji ste imali s {inboxName}.",
|
|
"RATING": {
|
|
"LABEL": "Ocijeni svoj razgovor",
|
|
"SUCCESS_MESSAGE": "Hvala Vam na ocjeni"
|
|
},
|
|
"FEEDBACK": {
|
|
"LABEL": "Želite li podijeliti neki komentar?",
|
|
"PLACEHOLDER": "Vaš komentar (opcionalno)",
|
|
"BUTTON_TEXT": "Unesi komentar"
|
|
},
|
|
"API": {
|
|
"SUCCESS_MESSAGE": "Anketa uspješno ažurirana",
|
|
"ERROR_MESSAGE": "Neuspješno spajanje na Woot Server, Molimo pokušajte kasnije"
|
|
}
|
|
},
|
|
"POWERED_BY": "Powered by Chatwoot"
|
|
}
|