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
27 lines
847 B
JSON
27 lines
847 B
JSON
{
|
|
"SEARCH": {
|
|
"TABS": {
|
|
"ALL": "Todos",
|
|
"CONTACTS": "Contato",
|
|
"CONVERSATIONS": "Conversas",
|
|
"MESSAGES": "Mensagens"
|
|
},
|
|
"SECTION": {
|
|
"CONTACTS": "Contato",
|
|
"CONVERSATIONS": "Conversas",
|
|
"MESSAGES": "Messagem"
|
|
},
|
|
"SEARCHING_DATA": "Procurando",
|
|
"EMPTY_STATE": "Nenhum {item} foi encontrado para a consulta '{query}'",
|
|
"EMPTY_STATE_FULL": "Nenhum resultado encontrado para a consulta '{query}'",
|
|
"PLACEHOLDER_KEYBINDING": "/ para focar",
|
|
"INPUT_PLACEHOLDER": "Digite 3 ou mais caracteres para pesquisar",
|
|
"EMPTY_STATE_DEFAULT": "Procurar por ID de conversa, e-mail, número de telefone, mensagens para melhores resultados de busca. ",
|
|
"BOT_LABEL": "Robôs",
|
|
"READ_MORE": "Saiba mais",
|
|
"WROTE": "escreveu:",
|
|
"FROM": "De",
|
|
"EMAIL": "e-mail"
|
|
}
|
|
}
|