File tree 3 files changed +21
-3
lines changed
3 files changed +21
-3
lines changed Original file line number Diff line number Diff line change 213
213
"CATALOG_CREATE_TITLE" : " Create a new data layer" ,
214
214
"CATALOG_NAME_FIELD_LABEL" : " Enter the name of the new layer" ,
215
215
"CATALOG_DESCRIPTION_FIELD_LABEL" : " Enter the description of the new layer" ,
216
- "CATALOG_FEATURE_ID_FIELD_LABEL" : " Enter a unique feature ID" ,
216
+ "CATALOG_FEATURE_ID_FIELD_LABEL" : " Enter a unique feature ID property name" ,
217
+ "CATALOG_FEATURE_LABEL_FIELD_LABEL" : " Enter the feature label property name" ,
217
218
"CATALOG_SCHEMA_FIELD_LABEL" : " Select a data scheme" ,
218
219
"LAYER_CATEGORY_CREATE_TITLE" : " Create a new category?" ,
219
220
"LAYER_CATEGORY_NAME_FIELD_LABEL" : " Enter the name of this category" ,
Original file line number Diff line number Diff line change 211
211
"CATALOG_CREATE_TITLE" : " Créer une nouvelles couche de données" ,
212
212
"CATALOG_NAME_FIELD_LABEL" : " Saisissez le nom de la nouvelle couche" ,
213
213
"CATALOG_DESCRIPTION_FIELD_LABEL" : " Saisissez la description de la nouvelle couche" ,
214
- "CATALOG_FEATURE_ID_FIELD_LABEL" : " Saisissez un identifiant unique" ,
214
+ "CATALOG_FEATURE_ID_FIELD_LABEL" : " Saisissez un nom de propriété pour l'identifiant unique des éléments" ,
215
+ "CATALOG_FEATURE_LABEL_FIELD_LABEL" : " Saisissez un nom de propriété pour la labellisation des éléments" ,
215
216
"CATALOG_SCHEMA_FIELD_LABEL" : " Sélectionnez un schéma de données" ,
216
217
"LAYER_CATEGORY_CREATE_TITLE" : " Créer une nouvelle catégorie ?" ,
217
218
"LAYER_CATEGORY_NAME_FIELD_LABEL" : " Saisissez le nom de la catégorie" ,
Original file line number Diff line number Diff line change 2
2
"$schema" : " http://json-schema.org/draft-07/schema#" ,
3
3
"$id" : " http://www.kalisio.xyz/schemas/catalog.update.json#" ,
4
4
"title" : " schemas.OBJECT_NAME" ,
5
- "description" : " Catalog edition schema" ,
5
+ "description" : " Layer edition schema" ,
6
6
"type" : " object" ,
7
7
"properties" : {
8
8
"name" : {
21
21
"component" : " form/KTextField" ,
22
22
"label" : " schemas.CATALOG_DESCRIPTION_FIELD_LABEL"
23
23
}
24
+ },
25
+ "featureId" : {
26
+ "type" : " string" ,
27
+ "maxLength" : 256 ,
28
+ "field" : {
29
+ "component" : " form/KTextField" ,
30
+ "label" : " schemas.CATALOG_FEATURE_ID_FIELD_LABEL"
31
+ }
32
+ },
33
+ "featureLabel" : {
34
+ "type" : " string" ,
35
+ "maxLength" : 256 ,
36
+ "field" : {
37
+ "component" : " form/KTextField" ,
38
+ "label" : " schemas.CATALOG_FEATURE_LABEL_FIELD_LABEL"
39
+ }
24
40
}
25
41
},
26
42
"required" : [" name" ]
You can’t perform that action at this time.
0 commit comments