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
682 B
JSON
20 lines
682 B
JSON
{
|
|
"SURVEY": {
|
|
"DESCRIPTION": "Caro cliente 👋, por favor, reserve alguns instantes para compartilhar a sua opinião sobre a conversa que teve com {inboxName}.",
|
|
"RATING": {
|
|
"LABEL": "Avalie a sua conversa",
|
|
"SUCCESS_MESSAGE": "Obrigado pela sua Avaliação"
|
|
},
|
|
"FEEDBACK": {
|
|
"LABEL": "Tem alguma sugestão para partilhar connosco?",
|
|
"PLACEHOLDER": "A sua sugestão (opcional)",
|
|
"BUTTON_TEXT": "Submeter"
|
|
},
|
|
"API": {
|
|
"SUCCESS_MESSAGE": "Formulário atualizado",
|
|
"ERROR_MESSAGE": "Não foi possível ligar ao servidor, por favor tente novamente mais tarde"
|
|
}
|
|
},
|
|
"POWERED_BY": "Desenvolvido por Chatwoot"
|
|
}
|