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
782 B
JSON
26 lines
782 B
JSON
{
|
||
"WHATSAPP_TEMPLATES": {
|
||
"MODAL": {
|
||
"TITLE": "WhatsApp Şablonları",
|
||
"SUBTITLE": "Göndermek istediğiniz WhatsApp şablonunu seçin",
|
||
"TEMPLATE_SELECTED_SUBTITLE": "{templateName} işleniyor"
|
||
},
|
||
"PICKER": {
|
||
"SEARCH_PLACEHOLDER": "Şablon Ara",
|
||
"NO_TEMPLATES_FOUND": "İçin hiç şablon bulunamadı",
|
||
"LABELS": {
|
||
"LANGUAGE": "Dil",
|
||
"TEMPLATE_BODY": "Şablon İçeriği",
|
||
"CATEGORY": "Kategori"
|
||
}
|
||
},
|
||
"PARSER": {
|
||
"VARIABLES_LABEL": "Değişkenler",
|
||
"VARIABLE_PLACEHOLDER": "{variable} değerini girin",
|
||
"GO_BACK_LABEL": "Geri Git",
|
||
"SEND_MESSAGE_LABEL": "Mesaj Gönder",
|
||
"FORM_ERROR_MESSAGE": "Lütfen göndermeden önce tüm değişkenleri doldurun"
|
||
}
|
||
}
|
||
}
|