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
721 B
JSON
20 lines
721 B
JSON
{
|
|
"SURVEY": {
|
|
"DESCRIPTION": "Arvoisa asiakas 👋, käytäthän hetken aikaasi ja annat palautetta keskustelusta, jonka kävit {inboxName} kanssa.",
|
|
"RATING": {
|
|
"LABEL": "Anna arvio palvelusta",
|
|
"SUCCESS_MESSAGE": "Kiitos, että lähetit arvion"
|
|
},
|
|
"FEEDBACK": {
|
|
"LABEL": "Onko sinulla vielä jotain palautetta, jonka haluaisit jakaa meille?",
|
|
"PLACEHOLDER": "Sinun palautteesi (ei pakollinen)",
|
|
"BUTTON_TEXT": "Lähetä palaute"
|
|
},
|
|
"API": {
|
|
"SUCCESS_MESSAGE": "Survey updated successfully",
|
|
"ERROR_MESSAGE": "Yhteyden muodostaminen Woot-palvelimelle ei onnistunut, yritä myöhemmin uudelleen"
|
|
}
|
|
},
|
|
"POWERED_BY": "Palvelun tarjoaa Chatwoot"
|
|
}
|