qwc2 2025.10.30 → 2025.11.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/actions/layers.js +6 -29
- package/components/AttributeForm.js +106 -77
- package/components/AttributeTableWidget.js +89 -88
- package/components/IdentifyViewer.js +4 -2
- package/components/LinkFeatureForm.js +17 -9
- package/components/LocationRecorder.js +1 -1
- package/components/PickFeature.js +45 -33
- package/components/QtDesignerForm.js +20 -18
- package/components/StandardApp.js +4 -0
- package/components/ThemeList.js +9 -10
- package/components/map3d/Map3D.js +6 -3
- package/package.json +2 -1
- package/plugins/Cyclomedia.js +5 -4
- package/plugins/Editing.js +307 -72
- package/plugins/FeatureForm.js +103 -111
- package/plugins/LayerTree.js +4 -1
- package/plugins/NewsPopup.js +2 -2
- package/plugins/Portal.js +3 -1
- package/plugins/Print.js +4 -4
- package/plugins/Redlining.js +9 -0
- package/plugins/ThemeSwitcher.js +3 -0
- package/plugins/map/EditingSupport.js +2 -2
- package/plugins/map/RedliningSupport.js +63 -13
- package/plugins/style/Editing.css +34 -0
- package/reducers/editing.js +12 -7
- package/reducers/layers.js +27 -5
- package/static/translations/bg-BG.json +10 -0
- package/static/translations/ca-ES.json +10 -0
- package/static/translations/cs-CZ.json +10 -0
- package/static/translations/de-CH.json +10 -0
- package/static/translations/de-DE.json +10 -0
- package/static/translations/en-US.json +11 -1
- package/static/translations/es-ES.json +10 -0
- package/static/translations/fi-FI.json +10 -0
- package/static/translations/fr-FR.json +10 -0
- package/static/translations/hu-HU.json +10 -0
- package/static/translations/it-IT.json +10 -0
- package/static/translations/ja-JP.json +10 -0
- package/static/translations/nl-NL.json +10 -0
- package/static/translations/no-NO.json +10 -0
- package/static/translations/pl-PL.json +10 -0
- package/static/translations/pt-BR.json +10 -0
- package/static/translations/pt-PT.json +10 -0
- package/static/translations/ro-RO.json +10 -0
- package/static/translations/ru-RU.json +10 -0
- package/static/translations/sv-SE.json +10 -0
- package/static/translations/tr-TR.json +10 -0
- package/static/translations/tsconfig.json +10 -0
- package/static/translations/uk-UA.json +10 -0
- package/utils/EditingUtils.js +15 -13
- package/utils/ElevationInterface.js +1 -2
- package/utils/LayerUtils.js +5 -3
- package/utils/MapUtils.js +2 -11
- package/utils/ServiceLayerUtils.js +53 -2
- package/utils/ThemeUtils.js +3 -1
package/reducers/editing.js
CHANGED
|
@@ -33,8 +33,10 @@ var checkNonZeroZ = function checkNonZeroZ(oldState, newState, fallback) {
|
|
|
33
33
|
}
|
|
34
34
|
return (oldState === null || oldState === void 0 ? void 0 : oldState.geomNonZeroZ) || false;
|
|
35
35
|
};
|
|
36
|
-
var checkGeomReadOnly = function checkGeomReadOnly(
|
|
37
|
-
|
|
36
|
+
var checkGeomReadOnly = function checkGeomReadOnly(editConfig) {
|
|
37
|
+
var _editConfig$geomType, _editConfig$permissio;
|
|
38
|
+
var simpleGeomType = ((_editConfig$geomType = editConfig === null || editConfig === void 0 ? void 0 : editConfig.geomType) !== null && _editConfig$geomType !== void 0 ? _editConfig$geomType : "").replace(/^Multi/, '').replace(/Z$/, '');
|
|
39
|
+
return (editConfig === null || editConfig === void 0 ? void 0 : editConfig.geomType) && !['Point', 'LineString', 'Polygon'].includes(simpleGeomType) || (editConfig === null || editConfig === void 0 || (_editConfig$permissio = editConfig.permissions) === null || _editConfig$permissio === void 0 ? void 0 : _editConfig$permissio.updatable) === false;
|
|
38
40
|
};
|
|
39
41
|
export default function editing() {
|
|
40
42
|
var state = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : defaultState;
|
|
@@ -42,18 +44,21 @@ export default function editing() {
|
|
|
42
44
|
switch (action.type) {
|
|
43
45
|
case SET_EDIT_CONTEXT:
|
|
44
46
|
{
|
|
45
|
-
var _action$
|
|
47
|
+
var _action$editConfig, _state$contexts$actio, _editConfig$permissio2;
|
|
48
|
+
var editConfig = (_action$editConfig = action.editConfig) !== null && _action$editConfig !== void 0 ? _action$editConfig : (_state$contexts$actio = state.contexts[action.contextId]) === null || _state$contexts$actio === void 0 ? void 0 : _state$contexts$actio.editConfig;
|
|
46
49
|
return {
|
|
47
50
|
contexts: _objectSpread(_objectSpread({}, state.contexts), {}, _defineProperty({}, action.contextId, _objectSpread(_objectSpread(_objectSpread({
|
|
48
51
|
action: null,
|
|
49
52
|
feature: null,
|
|
50
|
-
geomType: null,
|
|
51
53
|
changed: false,
|
|
52
|
-
|
|
54
|
+
mapPrefix: null,
|
|
55
|
+
editConfig: null
|
|
53
56
|
}, state.contexts[action.contextId]), action.editContext), {}, {
|
|
54
57
|
geomNonZeroZ: checkNonZeroZ(state.contexts[action.contextId], action.editContext),
|
|
55
|
-
geomReadOnly: checkGeomReadOnly(
|
|
56
|
-
id: action.contextId
|
|
58
|
+
geomReadOnly: checkGeomReadOnly(editConfig),
|
|
59
|
+
id: action.contextId,
|
|
60
|
+
geomType: editConfig === null || editConfig === void 0 ? void 0 : editConfig.geomType,
|
|
61
|
+
permissions: (_editConfig$permissio2 = editConfig === null || editConfig === void 0 ? void 0 : editConfig.permissions) !== null && _editConfig$permissio2 !== void 0 ? _editConfig$permissio2 : {}
|
|
57
62
|
}))),
|
|
58
63
|
currentContext: action.contextId
|
|
59
64
|
};
|
package/reducers/layers.js
CHANGED
|
@@ -34,7 +34,8 @@ var defaultState = {
|
|
|
34
34
|
filterParams: null,
|
|
35
35
|
filterGeom: null,
|
|
36
36
|
timeRange: null
|
|
37
|
-
}
|
|
37
|
+
},
|
|
38
|
+
editConfigs: {}
|
|
38
39
|
};
|
|
39
40
|
export default function layers() {
|
|
40
41
|
var state = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : defaultState;
|
|
@@ -196,8 +197,13 @@ export default function layers() {
|
|
|
196
197
|
bl: newLayer.name
|
|
197
198
|
});
|
|
198
199
|
}
|
|
200
|
+
var newEditConfigs = state.editConfigs;
|
|
201
|
+
if (newLayer.editConfig && newLayer.wms_name) {
|
|
202
|
+
newEditConfigs = _objectSpread(_objectSpread({}, newEditConfigs), {}, _defineProperty({}, newLayer.wms_name, _objectSpread(_objectSpread({}, newEditConfigs[newLayer.wms_name]), newLayer.editConfig)));
|
|
203
|
+
}
|
|
199
204
|
return _objectSpread(_objectSpread({}, state), {}, {
|
|
200
|
-
flat: _newLayers2
|
|
205
|
+
flat: _newLayers2,
|
|
206
|
+
editConfigs: newEditConfigs
|
|
201
207
|
});
|
|
202
208
|
}
|
|
203
209
|
case ADD_LAYER_SEPARATOR:
|
|
@@ -233,6 +239,7 @@ export default function layers() {
|
|
|
233
239
|
return state;
|
|
234
240
|
}
|
|
235
241
|
var _newLayers4 = state.flat;
|
|
242
|
+
var _newEditConfigs = state.editConfigs;
|
|
236
243
|
if (_layer.role === LayerRole.BACKGROUND || isEmpty(action.sublayerpath)) {
|
|
237
244
|
var position = state.flat.findIndex(function (l) {
|
|
238
245
|
return l.id === action.layerId;
|
|
@@ -243,6 +250,10 @@ export default function layers() {
|
|
|
243
250
|
// Compress layers
|
|
244
251
|
_newLayers4 = LayerUtils.implodeLayers(LayerUtils.explodeLayers(_newLayers4));
|
|
245
252
|
}
|
|
253
|
+
if (_newEditConfigs[_layer.wms_name]) {
|
|
254
|
+
_newEditConfigs = _objectSpread({}, _newEditConfigs);
|
|
255
|
+
delete _newEditConfigs[_layer.wms_name];
|
|
256
|
+
}
|
|
246
257
|
} else {
|
|
247
258
|
_newLayers4 = LayerUtils.removeLayer(state.flat, _layer, action.sublayerpath).map(function (l) {
|
|
248
259
|
if (l.type === "wms") {
|
|
@@ -256,7 +267,8 @@ export default function layers() {
|
|
|
256
267
|
l: LayerUtils.buildWMSLayerUrlParam(_newLayers4)
|
|
257
268
|
});
|
|
258
269
|
return _objectSpread(_objectSpread({}, state), {}, {
|
|
259
|
-
flat: _newLayers4
|
|
270
|
+
flat: _newLayers4,
|
|
271
|
+
editConfigs: _newEditConfigs
|
|
260
272
|
});
|
|
261
273
|
}
|
|
262
274
|
case ADD_LAYER_FEATURES:
|
|
@@ -365,8 +377,13 @@ export default function layers() {
|
|
|
365
377
|
UrlParams.updateParams({
|
|
366
378
|
l: LayerUtils.buildWMSLayerUrlParam(_newLayers8)
|
|
367
379
|
});
|
|
380
|
+
var _newEditConfigs2 = state.editConfigs;
|
|
381
|
+
if (action.layer.editConfig) {
|
|
382
|
+
_newEditConfigs2 = _objectSpread(_objectSpread({}, _newEditConfigs2), {}, _defineProperty({}, _newLayers8[themeLayerIdx].wms_name, _objectSpread(_objectSpread({}, _newEditConfigs2[_newLayers8[themeLayerIdx].wms_name]), action.layer.editConfig)));
|
|
383
|
+
}
|
|
368
384
|
return _objectSpread(_objectSpread({}, state), {}, {
|
|
369
|
-
flat: _newLayers8
|
|
385
|
+
flat: _newLayers8,
|
|
386
|
+
editConfigs: _newEditConfigs2
|
|
370
387
|
});
|
|
371
388
|
}
|
|
372
389
|
return state;
|
|
@@ -411,8 +428,13 @@ export default function layers() {
|
|
|
411
428
|
UrlParams.updateParams({
|
|
412
429
|
l: LayerUtils.buildWMSLayerUrlParam(_newLayers11)
|
|
413
430
|
});
|
|
431
|
+
var _newEditConfigs3 = state.editConfigs;
|
|
432
|
+
if (action.layer.editConfig && action.layer.wms_name) {
|
|
433
|
+
_newEditConfigs3 = _objectSpread(_objectSpread({}, _newEditConfigs3), {}, _defineProperty({}, action.layer.wms_name, _objectSpread(_objectSpread({}, _newEditConfigs3[action.layer.wms_name]), action.layer.editConfig)));
|
|
434
|
+
}
|
|
414
435
|
return _objectSpread(_objectSpread({}, state), {}, {
|
|
415
|
-
flat: _newLayers11
|
|
436
|
+
flat: _newLayers11,
|
|
437
|
+
editConfigs: _newEditConfigs3
|
|
416
438
|
});
|
|
417
439
|
}
|
|
418
440
|
case SET_SWIPE:
|
|
@@ -169,6 +169,14 @@
|
|
|
169
169
|
"attrtable": "Таблица",
|
|
170
170
|
"canceldelete": "Не изтривайте",
|
|
171
171
|
"clearpicture": "Clear",
|
|
172
|
+
"clone_all": "",
|
|
173
|
+
"clone_copy": "",
|
|
174
|
+
"clone_defaulted": "",
|
|
175
|
+
"clone_dontcopy": "",
|
|
176
|
+
"clone_hidden": "",
|
|
177
|
+
"clone_none": "",
|
|
178
|
+
"clone_select_attrs": "",
|
|
179
|
+
"clone_visible": "",
|
|
172
180
|
"commit": "Поемане на ангажимент",
|
|
173
181
|
"commitfailed": "Ангажиментът е неуспешен",
|
|
174
182
|
"contraintviolation": "Нарушение на ограничението",
|
|
@@ -189,6 +197,7 @@
|
|
|
189
197
|
"reallydelete": "Изтриване на",
|
|
190
198
|
"relationcommitfailed": "Някои стойности на отношенията не могат да бъдат предадени, проверете за повече информация подсказките на иконата",
|
|
191
199
|
"select": "Изберете",
|
|
200
|
+
"selectlayer": "",
|
|
192
201
|
"takepicture": "Направете снимка",
|
|
193
202
|
"unsavedchanged": "Има неспасени промени. Искате ли все пак да напуснете страницата?"
|
|
194
203
|
},
|
|
@@ -500,6 +509,7 @@
|
|
|
500
509
|
"bufferlayername": "Буфер",
|
|
501
510
|
"bufferselectfeature": "Изберете функция, която да буферира...",
|
|
502
511
|
"circle": "Кръг",
|
|
512
|
+
"clone": "",
|
|
503
513
|
"ctrlhint": "",
|
|
504
514
|
"delete": "Изтриване на",
|
|
505
515
|
"draw": "Начертайте",
|
|
@@ -169,6 +169,14 @@
|
|
|
169
169
|
"attrtable": "Taula",
|
|
170
170
|
"canceldelete": "No esborrar",
|
|
171
171
|
"clearpicture": "Netejar imatge",
|
|
172
|
+
"clone_all": "",
|
|
173
|
+
"clone_copy": "",
|
|
174
|
+
"clone_defaulted": "",
|
|
175
|
+
"clone_dontcopy": "",
|
|
176
|
+
"clone_hidden": "",
|
|
177
|
+
"clone_none": "",
|
|
178
|
+
"clone_select_attrs": "",
|
|
179
|
+
"clone_visible": "",
|
|
172
180
|
"commit": "Confirmar",
|
|
173
181
|
"commitfailed": "Ha fallat el commit",
|
|
174
182
|
"contraintviolation": "Violació de restricció",
|
|
@@ -189,6 +197,7 @@
|
|
|
189
197
|
"reallydelete": "Esborrar",
|
|
190
198
|
"relationcommitfailed": "Ha fallat el commit",
|
|
191
199
|
"select": "Seleccionar",
|
|
200
|
+
"selectlayer": "",
|
|
192
201
|
"takepicture": "Escull imatge",
|
|
193
202
|
"unsavedchanged": "Hi ha canvis sense guardar. Vols sortir de la pàgina sense guardar?"
|
|
194
203
|
},
|
|
@@ -500,6 +509,7 @@
|
|
|
500
509
|
"bufferlayername": "Capa de buffer",
|
|
501
510
|
"bufferselectfeature": "Seleccioni un element para enmagatzemar en bufer",
|
|
502
511
|
"circle": "Circle",
|
|
512
|
+
"clone": "Clonar",
|
|
503
513
|
"ctrlhint": "",
|
|
504
514
|
"delete": "Eliminar",
|
|
505
515
|
"draw": "Dibuixar",
|
|
@@ -169,6 +169,14 @@
|
|
|
169
169
|
"attrtable": "",
|
|
170
170
|
"canceldelete": "Neodstraňovat",
|
|
171
171
|
"clearpicture": "",
|
|
172
|
+
"clone_all": "",
|
|
173
|
+
"clone_copy": "",
|
|
174
|
+
"clone_defaulted": "",
|
|
175
|
+
"clone_dontcopy": "",
|
|
176
|
+
"clone_hidden": "",
|
|
177
|
+
"clone_none": "",
|
|
178
|
+
"clone_select_attrs": "",
|
|
179
|
+
"clone_visible": "",
|
|
172
180
|
"commit": "Potvrdit",
|
|
173
181
|
"commitfailed": "",
|
|
174
182
|
"contraintviolation": "",
|
|
@@ -189,6 +197,7 @@
|
|
|
189
197
|
"reallydelete": "Odstranit",
|
|
190
198
|
"relationcommitfailed": "",
|
|
191
199
|
"select": "Vybrat",
|
|
200
|
+
"selectlayer": "",
|
|
192
201
|
"takepicture": "",
|
|
193
202
|
"unsavedchanged": ""
|
|
194
203
|
},
|
|
@@ -500,6 +509,7 @@
|
|
|
500
509
|
"bufferlayername": "",
|
|
501
510
|
"bufferselectfeature": "",
|
|
502
511
|
"circle": "",
|
|
512
|
+
"clone": "",
|
|
503
513
|
"ctrlhint": "",
|
|
504
514
|
"delete": "",
|
|
505
515
|
"draw": "",
|
|
@@ -169,6 +169,14 @@
|
|
|
169
169
|
"attrtable": "Tabelle",
|
|
170
170
|
"canceldelete": "Abbrechen",
|
|
171
171
|
"clearpicture": "Zurücksetzen",
|
|
172
|
+
"clone_all": "Alle",
|
|
173
|
+
"clone_copy": "Auswahl kopieren",
|
|
174
|
+
"clone_defaulted": "(Defaultwert)",
|
|
175
|
+
"clone_dontcopy": "Keine kopieren",
|
|
176
|
+
"clone_hidden": "(versteckt)",
|
|
177
|
+
"clone_none": "Keine",
|
|
178
|
+
"clone_select_attrs": "Zu kopierende Attribute auswählen:",
|
|
179
|
+
"clone_visible": "Sichtbare ohne Defaultwert",
|
|
172
180
|
"commit": "Speichern",
|
|
173
181
|
"commitfailed": "Fehler beim Speichern",
|
|
174
182
|
"contraintviolation": "Verletzung einer Bedingung",
|
|
@@ -189,6 +197,7 @@
|
|
|
189
197
|
"reallydelete": "Löschen",
|
|
190
198
|
"relationcommitfailed": "Einige Relationen konnten nicht gespeichert werden, siehe Tooltips der Icons für mehr Details.",
|
|
191
199
|
"select": "Auswählen",
|
|
200
|
+
"selectlayer": "Ebene auswählen...",
|
|
192
201
|
"takepicture": "Bild schiessen",
|
|
193
202
|
"unsavedchanged": "Es gibt nicht gespeicherte Änderungen. Soll die Seite trotzdem verlassen werden?"
|
|
194
203
|
},
|
|
@@ -500,6 +509,7 @@
|
|
|
500
509
|
"bufferlayername": "Objektpuffer",
|
|
501
510
|
"bufferselectfeature": "Zu pufferndes Objekt auswählen...",
|
|
502
511
|
"circle": "Kreis",
|
|
512
|
+
"clone": "Kopieren",
|
|
503
513
|
"ctrlhint": "Mehrfachselektion mit Ctrl...",
|
|
504
514
|
"delete": "Löschen",
|
|
505
515
|
"draw": "Zeichnen",
|
|
@@ -169,6 +169,14 @@
|
|
|
169
169
|
"attrtable": "Tabelle",
|
|
170
170
|
"canceldelete": "Abbrechen",
|
|
171
171
|
"clearpicture": "Zurücksetzen",
|
|
172
|
+
"clone_all": "Alle",
|
|
173
|
+
"clone_copy": "Auswahl kopieren",
|
|
174
|
+
"clone_defaulted": "(Defaultwert)",
|
|
175
|
+
"clone_dontcopy": "Keine kopieren",
|
|
176
|
+
"clone_hidden": "(versteckt)",
|
|
177
|
+
"clone_none": "Keine",
|
|
178
|
+
"clone_select_attrs": "Zu kopierende Attribute auswählen:",
|
|
179
|
+
"clone_visible": "Sichtbare ohne Defaultwert",
|
|
172
180
|
"commit": "Speichern",
|
|
173
181
|
"commitfailed": "Fehler beim Speichern",
|
|
174
182
|
"contraintviolation": "Verletzung einer Bedingung",
|
|
@@ -189,6 +197,7 @@
|
|
|
189
197
|
"reallydelete": "Löschen",
|
|
190
198
|
"relationcommitfailed": "Einige Relationen konnten nicht gespeichert werden, siehe Tooltips der Icons für mehr Details.",
|
|
191
199
|
"select": "Auswählen",
|
|
200
|
+
"selectlayer": "Ebene auswählen...",
|
|
192
201
|
"takepicture": "Bild schießen",
|
|
193
202
|
"unsavedchanged": "Es gibt nicht gespeicherte Änderungen. Soll die Seite trotzdem verlassen werden?"
|
|
194
203
|
},
|
|
@@ -500,6 +509,7 @@
|
|
|
500
509
|
"bufferlayername": "Objektpuffer",
|
|
501
510
|
"bufferselectfeature": "Zu pufferndes Objekt auswählen...",
|
|
502
511
|
"circle": "Kreis",
|
|
512
|
+
"clone": "Kopieren",
|
|
503
513
|
"ctrlhint": "Mehrfachselektion mit Ctrl...",
|
|
504
514
|
"delete": "Löschen",
|
|
505
515
|
"draw": "Zeichnen",
|
|
@@ -169,6 +169,14 @@
|
|
|
169
169
|
"attrtable": "Table",
|
|
170
170
|
"canceldelete": "Don't delete",
|
|
171
171
|
"clearpicture": "Clear",
|
|
172
|
+
"clone_all": "All",
|
|
173
|
+
"clone_copy": "Copy selected",
|
|
174
|
+
"clone_defaulted": "(default value)",
|
|
175
|
+
"clone_dontcopy": "Don't copy",
|
|
176
|
+
"clone_hidden": "(hidden)",
|
|
177
|
+
"clone_none": "None",
|
|
178
|
+
"clone_select_attrs": "Select attributes to copy:",
|
|
179
|
+
"clone_visible": "Visible without default value",
|
|
172
180
|
"commit": "Commit",
|
|
173
181
|
"commitfailed": "Commit failed",
|
|
174
182
|
"contraintviolation": "Constraint violation",
|
|
@@ -189,6 +197,7 @@
|
|
|
189
197
|
"reallydelete": "Delete",
|
|
190
198
|
"relationcommitfailed": "Some relation values could not be committed, check the icon tooltips for details",
|
|
191
199
|
"select": "Select",
|
|
200
|
+
"selectlayer": "Select layer...",
|
|
192
201
|
"takepicture": "Take picture",
|
|
193
202
|
"unsavedchanged": "There are unsaved changes. Do you want to leave the page anyway?"
|
|
194
203
|
},
|
|
@@ -447,7 +456,7 @@
|
|
|
447
456
|
"angle": "Angle",
|
|
448
457
|
"featureunsupported": "Numeric input unavailable for this geometry",
|
|
449
458
|
"height": "Height",
|
|
450
|
-
"nofeatureormultiple": "",
|
|
459
|
+
"nofeatureormultiple": "No or multiple active features",
|
|
451
460
|
"side": "Side",
|
|
452
461
|
"width": "Width",
|
|
453
462
|
"windowtitle": "Numeric input"
|
|
@@ -500,6 +509,7 @@
|
|
|
500
509
|
"bufferlayername": "Buffer",
|
|
501
510
|
"bufferselectfeature": "Select a feature to buffer...",
|
|
502
511
|
"circle": "Circle",
|
|
512
|
+
"clone": "Clone",
|
|
503
513
|
"ctrlhint": "Use Ctrl for multiselection...",
|
|
504
514
|
"delete": "Delete",
|
|
505
515
|
"draw": "Draw",
|
|
@@ -169,6 +169,14 @@
|
|
|
169
169
|
"attrtable": "Tabla",
|
|
170
170
|
"canceldelete": "No borrar",
|
|
171
171
|
"clearpicture": "Limpiar",
|
|
172
|
+
"clone_all": "",
|
|
173
|
+
"clone_copy": "",
|
|
174
|
+
"clone_defaulted": "",
|
|
175
|
+
"clone_dontcopy": "",
|
|
176
|
+
"clone_hidden": "",
|
|
177
|
+
"clone_none": "",
|
|
178
|
+
"clone_select_attrs": "",
|
|
179
|
+
"clone_visible": "",
|
|
172
180
|
"commit": "Confirmar",
|
|
173
181
|
"commitfailed": "Fallo al guardar cambios",
|
|
174
182
|
"contraintviolation": "Violación de restricción",
|
|
@@ -189,6 +197,7 @@
|
|
|
189
197
|
"reallydelete": "Borrar",
|
|
190
198
|
"relationcommitfailed": "Algunos valores de las relaciones no han podido guardarse, verifique los tooltips de los iconos para más detalles",
|
|
191
199
|
"select": "Seleccionar",
|
|
200
|
+
"selectlayer": "",
|
|
192
201
|
"takepicture": "Tomar fotografía",
|
|
193
202
|
"unsavedchanged": "Hay cambios sin guardar. Quieres salir de la página sin guardar?"
|
|
194
203
|
},
|
|
@@ -500,6 +509,7 @@
|
|
|
500
509
|
"bufferlayername": "Bufer",
|
|
501
510
|
"bufferselectfeature": "Seleccione un elemento para almacenar en bufer",
|
|
502
511
|
"circle": "Círculo",
|
|
512
|
+
"clone": "Clonar",
|
|
503
513
|
"ctrlhint": "",
|
|
504
514
|
"delete": "Eliminar",
|
|
505
515
|
"draw": "Dibujar",
|
|
@@ -169,6 +169,14 @@
|
|
|
169
169
|
"attrtable": "",
|
|
170
170
|
"canceldelete": "Don't delete",
|
|
171
171
|
"clearpicture": "Clear",
|
|
172
|
+
"clone_all": "",
|
|
173
|
+
"clone_copy": "",
|
|
174
|
+
"clone_defaulted": "",
|
|
175
|
+
"clone_dontcopy": "",
|
|
176
|
+
"clone_hidden": "",
|
|
177
|
+
"clone_none": "",
|
|
178
|
+
"clone_select_attrs": "",
|
|
179
|
+
"clone_visible": "",
|
|
172
180
|
"commit": "Commit",
|
|
173
181
|
"commitfailed": "",
|
|
174
182
|
"contraintviolation": "",
|
|
@@ -189,6 +197,7 @@
|
|
|
189
197
|
"reallydelete": "Delete",
|
|
190
198
|
"relationcommitfailed": "Some relation values could not be committed, check the icon tooltips for details",
|
|
191
199
|
"select": "Select",
|
|
200
|
+
"selectlayer": "",
|
|
192
201
|
"takepicture": "Take picture",
|
|
193
202
|
"unsavedchanged": ""
|
|
194
203
|
},
|
|
@@ -500,6 +509,7 @@
|
|
|
500
509
|
"bufferlayername": "Bufferi",
|
|
501
510
|
"bufferselectfeature": "Valitse bufferin ominaisuus...",
|
|
502
511
|
"circle": "Ympyrä",
|
|
512
|
+
"clone": "",
|
|
503
513
|
"ctrlhint": "",
|
|
504
514
|
"delete": "Poista",
|
|
505
515
|
"draw": "Piirrä",
|
|
@@ -169,6 +169,14 @@
|
|
|
169
169
|
"attrtable": "Table",
|
|
170
170
|
"canceldelete": "Annuler la suppression",
|
|
171
171
|
"clearpicture": "Réinitialiser",
|
|
172
|
+
"clone_all": "Tous",
|
|
173
|
+
"clone_copy": "Copier sélectionnés",
|
|
174
|
+
"clone_defaulted": "(valuer predef.)",
|
|
175
|
+
"clone_dontcopy": "Ne rien copier",
|
|
176
|
+
"clone_hidden": "(masqué)",
|
|
177
|
+
"clone_none": "Aucun",
|
|
178
|
+
"clone_select_attrs": "Attributs à copier:",
|
|
179
|
+
"clone_visible": "Visibles sans valeur predef.",
|
|
172
180
|
"commit": "Appliquer",
|
|
173
181
|
"commitfailed": "Échec de l'enregistrement",
|
|
174
182
|
"contraintviolation": "Violation de contrainte",
|
|
@@ -189,6 +197,7 @@
|
|
|
189
197
|
"reallydelete": "Supprimer",
|
|
190
198
|
"relationcommitfailed": "Certaines relations n'ont pas pu être enregistrées. Pour plus de détails consulter le bouton d'informations",
|
|
191
199
|
"select": "Sélectionner",
|
|
200
|
+
"selectlayer": "Sélectionner une couche...",
|
|
192
201
|
"takepicture": "Ajouter une photo",
|
|
193
202
|
"unsavedchanged": "Il y a des modifications non enregistrées. Faut-il quand même quitter la page?"
|
|
194
203
|
},
|
|
@@ -500,6 +509,7 @@
|
|
|
500
509
|
"bufferlayername": "Sortie",
|
|
501
510
|
"bufferselectfeature": "Choisissez une entité pour le tampon...",
|
|
502
511
|
"circle": "Cercle",
|
|
512
|
+
"clone": "Copier",
|
|
503
513
|
"ctrlhint": "Ctrl pour sélection multiple...",
|
|
504
514
|
"delete": "Effacer",
|
|
505
515
|
"draw": "Dessiner",
|
|
@@ -169,6 +169,14 @@
|
|
|
169
169
|
"attrtable": "",
|
|
170
170
|
"canceldelete": "Ne töröld",
|
|
171
171
|
"clearpicture": "",
|
|
172
|
+
"clone_all": "",
|
|
173
|
+
"clone_copy": "",
|
|
174
|
+
"clone_defaulted": "",
|
|
175
|
+
"clone_dontcopy": "",
|
|
176
|
+
"clone_hidden": "",
|
|
177
|
+
"clone_none": "",
|
|
178
|
+
"clone_select_attrs": "",
|
|
179
|
+
"clone_visible": "",
|
|
172
180
|
"commit": "Jóváhagyás",
|
|
173
181
|
"commitfailed": "",
|
|
174
182
|
"contraintviolation": "",
|
|
@@ -189,6 +197,7 @@
|
|
|
189
197
|
"reallydelete": "Törlés",
|
|
190
198
|
"relationcommitfailed": "",
|
|
191
199
|
"select": "",
|
|
200
|
+
"selectlayer": "",
|
|
192
201
|
"takepicture": "",
|
|
193
202
|
"unsavedchanged": ""
|
|
194
203
|
},
|
|
@@ -500,6 +509,7 @@
|
|
|
500
509
|
"bufferlayername": "",
|
|
501
510
|
"bufferselectfeature": "",
|
|
502
511
|
"circle": "",
|
|
512
|
+
"clone": "",
|
|
503
513
|
"ctrlhint": "",
|
|
504
514
|
"delete": "",
|
|
505
515
|
"draw": "",
|
|
@@ -169,6 +169,14 @@
|
|
|
169
169
|
"attrtable": "Tabella",
|
|
170
170
|
"canceldelete": "Annulla",
|
|
171
171
|
"clearpicture": "Cancella",
|
|
172
|
+
"clone_all": "Tutti",
|
|
173
|
+
"clone_copy": "Copia selezionati",
|
|
174
|
+
"clone_defaulted": "(valore predef.)",
|
|
175
|
+
"clone_dontcopy": "Copia nessuno",
|
|
176
|
+
"clone_hidden": "(nascosto)",
|
|
177
|
+
"clone_none": "Nessuno",
|
|
178
|
+
"clone_select_attrs": "Attributi da copiare:",
|
|
179
|
+
"clone_visible": "Visibili senza valore predef.",
|
|
172
180
|
"commit": "Salva",
|
|
173
181
|
"commitfailed": "Impossibile salvare",
|
|
174
182
|
"contraintviolation": "Violazione di un vincolo",
|
|
@@ -189,6 +197,7 @@
|
|
|
189
197
|
"reallydelete": "Elimina",
|
|
190
198
|
"relationcommitfailed": "Alcune relazioni non sono state salvate, consultare i tooltip delle icone per i dettagli.",
|
|
191
199
|
"select": "Seleziona...",
|
|
200
|
+
"selectlayer": "Seleziona livello...",
|
|
192
201
|
"takepicture": "Foto",
|
|
193
202
|
"unsavedchanged": "Vi sono cambiamenti non salvati. Volete comunque lasciare la pagina?"
|
|
194
203
|
},
|
|
@@ -500,6 +509,7 @@
|
|
|
500
509
|
"bufferlayername": "Buffer",
|
|
501
510
|
"bufferselectfeature": "Seleziona un oggetto...",
|
|
502
511
|
"circle": "Cerchio",
|
|
512
|
+
"clone": "Copia",
|
|
503
513
|
"ctrlhint": "Ctrl per selezione multipla...",
|
|
504
514
|
"delete": "Elimina",
|
|
505
515
|
"draw": "Disegna",
|
|
@@ -169,6 +169,14 @@
|
|
|
169
169
|
"attrtable": "テーブル",
|
|
170
170
|
"canceldelete": "削除しない",
|
|
171
171
|
"clearpicture": "クリア",
|
|
172
|
+
"clone_all": "",
|
|
173
|
+
"clone_copy": "",
|
|
174
|
+
"clone_defaulted": "",
|
|
175
|
+
"clone_dontcopy": "",
|
|
176
|
+
"clone_hidden": "",
|
|
177
|
+
"clone_none": "",
|
|
178
|
+
"clone_select_attrs": "",
|
|
179
|
+
"clone_visible": "",
|
|
172
180
|
"commit": "コミット",
|
|
173
181
|
"commitfailed": "コミット出来ませんでした",
|
|
174
182
|
"contraintviolation": "制約違反",
|
|
@@ -189,6 +197,7 @@
|
|
|
189
197
|
"reallydelete": "削除",
|
|
190
198
|
"relationcommitfailed": "関連する値にコミット出来ないものがありました。詳細はアイコンのツールチップを参照して下さい。",
|
|
191
199
|
"select": "選択",
|
|
200
|
+
"selectlayer": "",
|
|
192
201
|
"takepicture": "撮影する",
|
|
193
202
|
"unsavedchanged": "保存されていない変更があります。それでもこのページを離れますか?"
|
|
194
203
|
},
|
|
@@ -500,6 +509,7 @@
|
|
|
500
509
|
"bufferlayername": "バッファ",
|
|
501
510
|
"bufferselectfeature": "バッファを適用する地物を選択...",
|
|
502
511
|
"circle": "円",
|
|
512
|
+
"clone": "クローン",
|
|
503
513
|
"ctrlhint": "",
|
|
504
514
|
"delete": "削除",
|
|
505
515
|
"draw": "作図",
|
|
@@ -169,6 +169,14 @@
|
|
|
169
169
|
"attrtable": "Tabel",
|
|
170
170
|
"canceldelete": "Niet verwijderen",
|
|
171
171
|
"clearpicture": "Wissen",
|
|
172
|
+
"clone_all": "",
|
|
173
|
+
"clone_copy": "",
|
|
174
|
+
"clone_defaulted": "",
|
|
175
|
+
"clone_dontcopy": "",
|
|
176
|
+
"clone_hidden": "",
|
|
177
|
+
"clone_none": "",
|
|
178
|
+
"clone_select_attrs": "",
|
|
179
|
+
"clone_visible": "",
|
|
172
180
|
"commit": "Bevestigen",
|
|
173
181
|
"commitfailed": "Bevestigen mislukt",
|
|
174
182
|
"contraintviolation": "",
|
|
@@ -189,6 +197,7 @@
|
|
|
189
197
|
"reallydelete": "Verwijderen",
|
|
190
198
|
"relationcommitfailed": "Sommige relatiegegevens konden niet worden bevestigd. Controleer de pictogrammen voor details",
|
|
191
199
|
"select": "Selecteren",
|
|
200
|
+
"selectlayer": "",
|
|
192
201
|
"takepicture": "Foto maken",
|
|
193
202
|
"unsavedchanged": "Er zijn niet-opgeslagen wijzigingen. Wil je de pagina toch verlaten?"
|
|
194
203
|
},
|
|
@@ -500,6 +509,7 @@
|
|
|
500
509
|
"bufferlayername": "Laag",
|
|
501
510
|
"bufferselectfeature": "Selecteer object om te bufferen...",
|
|
502
511
|
"circle": "Cirkel",
|
|
512
|
+
"clone": "",
|
|
503
513
|
"ctrlhint": "",
|
|
504
514
|
"delete": "Verwijderen",
|
|
505
515
|
"draw": "Tekenen",
|
|
@@ -169,6 +169,14 @@
|
|
|
169
169
|
"attrtable": "",
|
|
170
170
|
"canceldelete": "Ikke slett",
|
|
171
171
|
"clearpicture": "",
|
|
172
|
+
"clone_all": "",
|
|
173
|
+
"clone_copy": "",
|
|
174
|
+
"clone_defaulted": "",
|
|
175
|
+
"clone_dontcopy": "",
|
|
176
|
+
"clone_hidden": "",
|
|
177
|
+
"clone_none": "",
|
|
178
|
+
"clone_select_attrs": "",
|
|
179
|
+
"clone_visible": "",
|
|
172
180
|
"commit": "Bekreft",
|
|
173
181
|
"commitfailed": "",
|
|
174
182
|
"contraintviolation": "",
|
|
@@ -189,6 +197,7 @@
|
|
|
189
197
|
"reallydelete": "Virkelig slette",
|
|
190
198
|
"relationcommitfailed": "",
|
|
191
199
|
"select": "Velg",
|
|
200
|
+
"selectlayer": "",
|
|
192
201
|
"takepicture": "",
|
|
193
202
|
"unsavedchanged": ""
|
|
194
203
|
},
|
|
@@ -500,6 +509,7 @@
|
|
|
500
509
|
"bufferlayername": "Buffer",
|
|
501
510
|
"bufferselectfeature": "Velg et objekt fra buffer",
|
|
502
511
|
"circle": "",
|
|
512
|
+
"clone": "",
|
|
503
513
|
"ctrlhint": "",
|
|
504
514
|
"delete": "Slett",
|
|
505
515
|
"draw": "Tegn",
|
|
@@ -169,6 +169,14 @@
|
|
|
169
169
|
"attrtable": "",
|
|
170
170
|
"canceldelete": "Nie usuwaj",
|
|
171
171
|
"clearpicture": "",
|
|
172
|
+
"clone_all": "",
|
|
173
|
+
"clone_copy": "",
|
|
174
|
+
"clone_defaulted": "",
|
|
175
|
+
"clone_dontcopy": "",
|
|
176
|
+
"clone_hidden": "",
|
|
177
|
+
"clone_none": "",
|
|
178
|
+
"clone_select_attrs": "",
|
|
179
|
+
"clone_visible": "",
|
|
172
180
|
"commit": "Zatwierdź",
|
|
173
181
|
"commitfailed": "",
|
|
174
182
|
"contraintviolation": "",
|
|
@@ -189,6 +197,7 @@
|
|
|
189
197
|
"reallydelete": "Usuń",
|
|
190
198
|
"relationcommitfailed": "",
|
|
191
199
|
"select": "Zaznacz",
|
|
200
|
+
"selectlayer": "",
|
|
192
201
|
"takepicture": "",
|
|
193
202
|
"unsavedchanged": ""
|
|
194
203
|
},
|
|
@@ -500,6 +509,7 @@
|
|
|
500
509
|
"bufferlayername": "Buforuj",
|
|
501
510
|
"bufferselectfeature": "Wybierz element do buforowania",
|
|
502
511
|
"circle": "",
|
|
512
|
+
"clone": "",
|
|
503
513
|
"ctrlhint": "",
|
|
504
514
|
"delete": "Usuń",
|
|
505
515
|
"draw": "Rysuj",
|
|
@@ -169,6 +169,14 @@
|
|
|
169
169
|
"attrtable": "Tabela de atributos",
|
|
170
170
|
"canceldelete": "Não apagar",
|
|
171
171
|
"clearpicture": "Limpar imagem",
|
|
172
|
+
"clone_all": "",
|
|
173
|
+
"clone_copy": "",
|
|
174
|
+
"clone_defaulted": "",
|
|
175
|
+
"clone_dontcopy": "",
|
|
176
|
+
"clone_hidden": "",
|
|
177
|
+
"clone_none": "",
|
|
178
|
+
"clone_select_attrs": "",
|
|
179
|
+
"clone_visible": "",
|
|
172
180
|
"commit": "Commit",
|
|
173
181
|
"commitfailed": "Falha de confirmação",
|
|
174
182
|
"contraintviolation": "",
|
|
@@ -189,6 +197,7 @@
|
|
|
189
197
|
"reallydelete": "Excluir",
|
|
190
198
|
"relationcommitfailed": "Falha na confirmação",
|
|
191
199
|
"select": "Selecione",
|
|
200
|
+
"selectlayer": "",
|
|
192
201
|
"takepicture": "Selecionar imagem",
|
|
193
202
|
"unsavedchanged": "Alterações não salvas"
|
|
194
203
|
},
|
|
@@ -500,6 +509,7 @@
|
|
|
500
509
|
"bufferlayername": "Nome do buffer",
|
|
501
510
|
"bufferselectfeature": "Selecione uma característica para o buffer...",
|
|
502
511
|
"circle": "Círculo",
|
|
512
|
+
"clone": "",
|
|
503
513
|
"ctrlhint": "",
|
|
504
514
|
"delete": "Excluir",
|
|
505
515
|
"draw": "Traçar",
|