change default value for prefix name.

This commit is contained in:
morevsavva
2024-01-19 13:08:40 +03:00
parent d643183ded
commit b585cf4f7f
2 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -1,11 +1,11 @@
{
"type": "object",
"properties": {
"data_element_prefix": {
"data_element_name": {
"type": "string",
"default_value": "it.",
"default_value": "it",
"supports_expressions": false,
"$description": "translations.json#/div_collection_item_builder_prototypes_data_element_prefix"
"$description": "translations.json#/div_collection_item_builder_prototypes_data_element_name"
},
"data": {
"type": "array",
+3 -3
View File
@@ -399,9 +399,9 @@
"en": "Array of `div` from which the collection items will be created.",
"ru": "Массив `div` из которых будут созданы элементы коллекции."
},
"div_collection_item_builder_prototypes_data_element_prefix": {
"en": "Prefix for accessing the next `data` element in the prototype.",
"ru": "Префикс для обращения к очередному элементу `data` в прототипе."
"div_collection_item_builder_prototypes_data_element_name": {
"en": "Name for accessing the next `data` element in the prototype. Working with this element is like working with DivKit dictionaries.",
"ru": "Имя для обращения к очередному элементу `data` в прототипе. Работа с этим элементом ведется как со словарями."
},
"div_collection_item_builder_prototypes_div": {
"en": "`Div` from which the collection items will be created. In `Div`, you can use expressions using data from `data`, to access the next `data` element, you need to use the same prefix as in `data_element_prefix`.",