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
707 B
JSON
20 lines
707 B
JSON
{
|
|
"SURVEY": {
|
|
"DESCRIPTION": "Cher client 👋, veuillez prendre quelques instants pour partager vos commentaires sur la conversation que vous avez eue avec {inboxName}.",
|
|
"RATING": {
|
|
"LABEL": "Évaluer votre conversation",
|
|
"SUCCESS_MESSAGE": "Merci d'avoir soumis votre évaluation"
|
|
},
|
|
"FEEDBACK": {
|
|
"LABEL": "Avez-vous des pensées que vous aimeriez partager?",
|
|
"PLACEHOLDER": "Vos commentaires (facultatif)",
|
|
"BUTTON_TEXT": "Soumettre des commentaires"
|
|
},
|
|
"API": {
|
|
"SUCCESS_MESSAGE": "Enquête mise à jour avec succès",
|
|
"ERROR_MESSAGE": "L'attribut personnalisé a été ajouté"
|
|
}
|
|
},
|
|
"POWERED_BY": "Propulsé par Chatwoot"
|
|
}
|