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
26 lines
875 B
JSON
26 lines
875 B
JSON
{
|
|
"WHATSAPP_TEMPLATES": {
|
|
"MODAL": {
|
|
"TITLE": "Whatsapp Skabeloner",
|
|
"SUBTITLE": "Vælg den whatsapp skabelon, du vil sende",
|
|
"TEMPLATE_SELECTED_SUBTITLE": "Proces {templateName}"
|
|
},
|
|
"PICKER": {
|
|
"SEARCH_PLACEHOLDER": "Søg Skabeloner",
|
|
"NO_TEMPLATES_FOUND": "Ingen skabeloner fundet for",
|
|
"LABELS": {
|
|
"LANGUAGE": "Sprog",
|
|
"TEMPLATE_BODY": "Skabelon Krop",
|
|
"CATEGORY": "Kategori"
|
|
}
|
|
},
|
|
"PARSER": {
|
|
"VARIABLES_LABEL": "Variabler",
|
|
"VARIABLE_PLACEHOLDER": "Indtast {variable} værdi",
|
|
"GO_BACK_LABEL": "Gå Tilbage",
|
|
"SEND_MESSAGE_LABEL": "Send Besked",
|
|
"FORM_ERROR_MESSAGE": "Udfyld venligst alle variabler før afsendelse"
|
|
}
|
|
}
|
|
}
|