geonetwork-ui 2.4.1-dev.b217f2e40 → 2.4.1-dev.bf3be28aa
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/esm2022/libs/feature/editor/src/lib/+state/editor.selectors.mjs +4 -4
- package/esm2022/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.mjs +10 -80
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.mjs +23 -36
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.mjs +3 -4
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +3 -3
- package/esm2022/libs/feature/search/src/lib/results-table/results-table-container.component.mjs +3 -5
- package/esm2022/libs/ui/inputs/src/lib/url-input/url-input.component.mjs +2 -7
- package/esm2022/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.mjs +3 -3
- package/esm2022/libs/ui/search/src/lib/results-table/results-table.component.mjs +3 -6
- package/esm2022/libs/util/shared/src/lib/links/link-utils.mjs +1 -37
- package/esm2022/translations/de.json +0 -3
- package/esm2022/translations/en.json +0 -3
- package/esm2022/translations/es.json +0 -3
- package/esm2022/translations/fr.json +0 -3
- package/esm2022/translations/it.json +0 -3
- package/esm2022/translations/nl.json +0 -3
- package/esm2022/translations/pt.json +0 -3
- package/fesm2022/geonetwork-ui.mjs +45 -193
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.d.ts +5 -44
- package/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts +4 -4
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.d.ts +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.d.ts.map +1 -1
- package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts +1 -2
- package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts +1 -1
- package/libs/ui/inputs/src/lib/url-input/url-input.component.d.ts +2 -3
- package/libs/ui/inputs/src/lib/url-input/url-input.component.d.ts.map +1 -1
- package/libs/ui/search/src/lib/results-table/results-table.component.d.ts +1 -2
- package/libs/ui/search/src/lib/results-table/results-table.component.d.ts.map +1 -1
- package/libs/util/shared/src/lib/links/link-utils.d.ts +1 -2
- package/libs/util/shared/src/lib/links/link-utils.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/libs/feature/editor/src/lib/+state/editor.selectors.ts +3 -3
- package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.html +7 -39
- package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.ts +4 -100
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.html +1 -1
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.ts +19 -31
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.html +9 -11
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.ts +2 -3
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +2 -2
- package/src/libs/feature/search/src/lib/results-table/results-table-container.component.html +0 -1
- package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +0 -1
- package/src/libs/ui/inputs/src/lib/url-input/url-input.component.ts +1 -9
- package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.html +1 -5
- package/src/libs/ui/search/src/lib/results-table/results-table.component.html +1 -1
- package/src/libs/ui/search/src/lib/results-table/results-table.component.ts +0 -1
- package/src/libs/util/shared/src/lib/links/link-utils.ts +1 -48
- package/translations/de.json +0 -3
- package/translations/en.json +0 -3
- package/translations/es.json +0 -3
- package/translations/fr.json +0 -3
- package/translations/it.json +0 -3
- package/translations/nl.json +0 -3
- package/translations/pt.json +0 -3
- package/translations/sk.json +0 -3
|
@@ -92,12 +92,11 @@ export class FormFieldOnlineResourcesComponent {
|
|
|
92
92
|
notLinkResources: OnlineNotLinkResource[] = []
|
|
93
93
|
uploadProgress = undefined
|
|
94
94
|
uploadSubscription: Subscription = null
|
|
95
|
-
newService =
|
|
95
|
+
newService = {
|
|
96
96
|
type: 'service',
|
|
97
97
|
accessServiceProtocol: 'ogcFeatures',
|
|
98
98
|
identifierInService: '',
|
|
99
|
-
|
|
100
|
-
}
|
|
99
|
+
} as Omit<DatasetServiceDistribution, 'url'>
|
|
101
100
|
|
|
102
101
|
protected MAX_UPLOAD_SIZE_MB = MAX_UPLOAD_SIZE_MB
|
|
103
102
|
|
package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html
CHANGED
|
@@ -112,8 +112,8 @@
|
|
|
112
112
|
<ng-container *ngSwitchCase="'licenses'">
|
|
113
113
|
<gn-ui-form-field-license
|
|
114
114
|
[label]="config.labelKey! | translate"
|
|
115
|
-
[
|
|
116
|
-
(
|
|
115
|
+
[recordConstraints]="valueAsConstraints"
|
|
116
|
+
(recordConstraintsChange)="valueChange.emit($event)"
|
|
117
117
|
></gn-ui-form-field-license>
|
|
118
118
|
</ng-container>
|
|
119
119
|
|
package/src/libs/feature/search/src/lib/results-table/results-table-container.component.html
CHANGED
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
[sortOrder]="sortBy$ | async"
|
|
7
7
|
[canDelete]="canDelete"
|
|
8
8
|
[canDuplicate]="canDuplicate"
|
|
9
|
-
[isDuplicating]="isDuplicating"
|
|
10
9
|
(recordClick)="handleRecordClick($event)"
|
|
11
10
|
(duplicateRecord)="handleDuplicateRecord($event)"
|
|
12
11
|
(deleteRecord)="handleDeleteRecord($event)"
|
|
@@ -26,7 +26,6 @@ import { TranslateService } from '@ngx-translate/core'
|
|
|
26
26
|
export class ResultsTableContainerComponent implements OnDestroy {
|
|
27
27
|
@Input() canDuplicate: (record: CatalogRecord) => boolean = () => true
|
|
28
28
|
@Input() canDelete: (record: CatalogRecord) => boolean = () => true
|
|
29
|
-
@Input() isDuplicating: false
|
|
30
29
|
|
|
31
30
|
@Output() recordClick = new EventEmitter<CatalogRecord>()
|
|
32
31
|
@Output() duplicateRecord = new EventEmitter<CatalogRecord>()
|
|
@@ -4,9 +4,7 @@ import {
|
|
|
4
4
|
Component,
|
|
5
5
|
EventEmitter,
|
|
6
6
|
Input,
|
|
7
|
-
OnChanges,
|
|
8
7
|
Output,
|
|
9
|
-
SimpleChanges,
|
|
10
8
|
} from '@angular/core'
|
|
11
9
|
import { CommonModule } from '@angular/common'
|
|
12
10
|
import { ButtonComponent } from '../button/button.component'
|
|
@@ -31,7 +29,7 @@ import { iconoirArrowUp, iconoirLink } from '@ng-icons/iconoir'
|
|
|
31
29
|
],
|
|
32
30
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
33
31
|
})
|
|
34
|
-
export class UrlInputComponent
|
|
32
|
+
export class UrlInputComponent {
|
|
35
33
|
@Input() set value(v: string) {
|
|
36
34
|
// we're making sure to only update the input if the URL representation of it has changed; otherwise we keep it identical
|
|
37
35
|
// to avoid glitches when starting to write a URL and having some characters added/replaced automatically
|
|
@@ -59,12 +57,6 @@ export class UrlInputComponent implements OnChanges {
|
|
|
59
57
|
|
|
60
58
|
constructor(private cd: ChangeDetectorRef) {}
|
|
61
59
|
|
|
62
|
-
ngOnChanges(changes: SimpleChanges) {
|
|
63
|
-
if (changes['value']) {
|
|
64
|
-
this.inputValue = changes['value'].currentValue
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
|
|
68
60
|
handleInput(event: Event) {
|
|
69
61
|
const value = (event.target as HTMLInputElement).value
|
|
70
62
|
this.inputValue = value
|
|
@@ -11,11 +11,7 @@
|
|
|
11
11
|
(buttonClick)="duplicate.emit()"
|
|
12
12
|
[disabled]="!canDuplicate"
|
|
13
13
|
data-test="record-menu-duplicate-button"
|
|
14
|
-
|
|
15
|
-
<span *ngIf="canDuplicate" translate>record.action.duplicate</span>
|
|
16
|
-
<span *ngIf="!canDuplicate" translate
|
|
17
|
-
>record.action.duplicating</span
|
|
18
|
-
></gn-ui-button
|
|
14
|
+
><span translate>record.action.duplicate</span></gn-ui-button
|
|
19
15
|
>
|
|
20
16
|
<gn-ui-button
|
|
21
17
|
type="light"
|
|
@@ -160,7 +160,7 @@
|
|
|
160
160
|
</gn-ui-button>
|
|
161
161
|
<ng-template #template>
|
|
162
162
|
<gn-ui-action-menu
|
|
163
|
-
[canDuplicate]="canDuplicate(item)
|
|
163
|
+
[canDuplicate]="canDuplicate(item)"
|
|
164
164
|
[canDelete]="canDelete(item)"
|
|
165
165
|
(duplicate)="handleDuplicate(item)"
|
|
166
166
|
(delete)="handleDelete(item)"
|
|
@@ -66,7 +66,6 @@ export class ResultsTableComponent {
|
|
|
66
66
|
@Input() canDuplicate: (record: CatalogRecord) => boolean = () => true
|
|
67
67
|
@Input() canDelete: (record: CatalogRecord) => boolean = () => true
|
|
68
68
|
@Input() isDraftPage = false
|
|
69
|
-
@Input() isDuplicating = false
|
|
70
69
|
|
|
71
70
|
// emits the column (field) as well as the order
|
|
72
71
|
@Output() sortByChange = new EventEmitter<[string, 'asc' | 'desc']>()
|
|
@@ -1,14 +1,5 @@
|
|
|
1
1
|
import { marker } from '@biesbjerg/ngx-translate-extract-marker'
|
|
2
|
-
import {
|
|
3
|
-
DatasetOnlineResource,
|
|
4
|
-
ServiceProtocol,
|
|
5
|
-
} from '../../../../../../libs/common/domain/src/lib/model/record'
|
|
6
|
-
import {
|
|
7
|
-
OgcApiEndpoint,
|
|
8
|
-
WfsEndpoint,
|
|
9
|
-
WmsEndpoint,
|
|
10
|
-
WmtsEndpoint,
|
|
11
|
-
} from '@camptocamp/ogc-client'
|
|
2
|
+
import { DatasetOnlineResource } from '../../../../../../libs/common/domain/src/lib/model/record'
|
|
12
3
|
|
|
13
4
|
marker('downloads.wfs.featuretype.not.found')
|
|
14
5
|
|
|
@@ -251,44 +242,6 @@ export function getLinkLabel(link: DatasetOnlineResource): string {
|
|
|
251
242
|
return format ? `${label} (${format})` : label
|
|
252
243
|
}
|
|
253
244
|
|
|
254
|
-
export async function getLayers(url: string, serviceProtocol: ServiceProtocol) {
|
|
255
|
-
switch (serviceProtocol) {
|
|
256
|
-
case 'ogcFeatures': {
|
|
257
|
-
const layers = await new OgcApiEndpoint(url).allCollections
|
|
258
|
-
return layers
|
|
259
|
-
}
|
|
260
|
-
case 'wfs': {
|
|
261
|
-
const endpointWfs = await new WfsEndpoint(url).isReady()
|
|
262
|
-
return endpointWfs.getFeatureTypes()
|
|
263
|
-
}
|
|
264
|
-
case 'wms': {
|
|
265
|
-
const endpointWms = await new WmsEndpoint(url).isReady()
|
|
266
|
-
return endpointWms
|
|
267
|
-
.getLayers()
|
|
268
|
-
.flatMap(wmsLayerFlatten)
|
|
269
|
-
.filter((l) => l.name)
|
|
270
|
-
}
|
|
271
|
-
case 'wmts': {
|
|
272
|
-
const endpointWmts = await new WmtsEndpoint(url).isReady()
|
|
273
|
-
return endpointWmts.getLayers()
|
|
274
|
-
}
|
|
275
|
-
default:
|
|
276
|
-
return undefined
|
|
277
|
-
}
|
|
278
|
-
}
|
|
279
|
-
|
|
280
|
-
function wmsLayerFlatten(layerFull) {
|
|
281
|
-
const layer = {
|
|
282
|
-
title: layerFull.title,
|
|
283
|
-
name: layerFull.name,
|
|
284
|
-
abstract: layerFull.abstract,
|
|
285
|
-
}
|
|
286
|
-
|
|
287
|
-
return 'children' in layerFull && Array.isArray(layerFull.children)
|
|
288
|
-
? [layer, ...layerFull.children.flatMap(wmsLayerFlatten)]
|
|
289
|
-
: [layer]
|
|
290
|
-
}
|
|
291
|
-
|
|
292
245
|
export function getMimeTypeForFormat(format: FileFormat): string | null {
|
|
293
246
|
return format in FORMATS ? FORMATS[format.toLowerCase()].mimeTypes[0] : null
|
|
294
247
|
}
|
package/translations/de.json
CHANGED
|
@@ -238,10 +238,8 @@
|
|
|
238
238
|
"editor.record.form.field.onlineResource.dialogTitle": "",
|
|
239
239
|
"editor.record.form.field.onlineResource.edit.description": "",
|
|
240
240
|
"editor.record.form.field.onlineResource.edit.protocol": "",
|
|
241
|
-
"editor.record.form.field.onlineResource.edit.identifier.error": "Schichten konnten nicht vom Protokoll abgerufen werden",
|
|
242
241
|
"editor.record.form.field.onlineResource.edit.identifier.placeholder": "Ebenenname",
|
|
243
242
|
"editor.record.form.field.onlineResource.edit.identifier.placeholder.wps": "Prozessname",
|
|
244
|
-
"editor.record.form.field.onlineResource.edit.identifier.select.label": "Wählen Sie eine Ebene",
|
|
245
243
|
"editor.record.form.field.onlineResource.edit.identifier.submit": "Link zum Dienst",
|
|
246
244
|
"editor.record.form.field.onlineResource.edit.title": "",
|
|
247
245
|
"editor.record.form.field.onlineResource.fileSize": "",
|
|
@@ -419,7 +417,6 @@
|
|
|
419
417
|
"record.action.delete": "Löschen",
|
|
420
418
|
"record.action.download": "Herunterladen",
|
|
421
419
|
"record.action.duplicate": "",
|
|
422
|
-
"record.action.duplicating": "",
|
|
423
420
|
"record.action.view": "Anzeigen",
|
|
424
421
|
"record.externalViewer.open": "In externem Kartenviewer öffnen",
|
|
425
422
|
"record.feature.limit": "Die Ressource enthält mehr als {count} Features und kann hier nicht angezeigt werden.",
|
package/translations/en.json
CHANGED
|
@@ -238,10 +238,8 @@
|
|
|
238
238
|
"editor.record.form.field.onlineResource.dialogTitle": "Modify the dataset preview",
|
|
239
239
|
"editor.record.form.field.onlineResource.edit.description": "Description",
|
|
240
240
|
"editor.record.form.field.onlineResource.edit.protocol": "Protocol",
|
|
241
|
-
"editor.record.form.field.onlineResource.edit.identifier.error": "Unable to retrieve layers from protocol",
|
|
242
241
|
"editor.record.form.field.onlineResource.edit.identifier.placeholder": "Layer name",
|
|
243
242
|
"editor.record.form.field.onlineResource.edit.identifier.placeholder.wps": "Process name",
|
|
244
|
-
"editor.record.form.field.onlineResource.edit.identifier.select.label": "Select a layer",
|
|
245
243
|
"editor.record.form.field.onlineResource.edit.identifier.submit": "Link to the service",
|
|
246
244
|
"editor.record.form.field.onlineResource.edit.title": "Title",
|
|
247
245
|
"editor.record.form.field.onlineResource.fileSize": "{sizeMB}MB",
|
|
@@ -419,7 +417,6 @@
|
|
|
419
417
|
"record.action.delete": "Delete",
|
|
420
418
|
"record.action.download": "Download",
|
|
421
419
|
"record.action.duplicate": "Duplicate",
|
|
422
|
-
"record.action.duplicating": "Duplicating...",
|
|
423
420
|
"record.action.view": "View",
|
|
424
421
|
"record.externalViewer.open": "Open in the external map viewer",
|
|
425
422
|
"record.feature.limit": "The resource contains more than {count} features and cannot be displayed here.",
|
package/translations/es.json
CHANGED
|
@@ -238,10 +238,8 @@
|
|
|
238
238
|
"editor.record.form.field.onlineResource.dialogTitle": "",
|
|
239
239
|
"editor.record.form.field.onlineResource.edit.description": "",
|
|
240
240
|
"editor.record.form.field.onlineResource.edit.protocol": "",
|
|
241
|
-
"editor.record.form.field.onlineResource.edit.identifier.error": "No se pueden recuperar las capas del protocolo",
|
|
242
241
|
"editor.record.form.field.onlineResource.edit.identifier.placeholder": "Nombre de la capa",
|
|
243
242
|
"editor.record.form.field.onlineResource.edit.identifier.placeholder.wps": "Nombre del proceso",
|
|
244
|
-
"editor.record.form.field.onlineResource.edit.identifier.select.label": "Selecciona una capa",
|
|
245
243
|
"editor.record.form.field.onlineResource.edit.identifier.submit": "Enlace al servicio",
|
|
246
244
|
"editor.record.form.field.onlineResource.edit.title": "",
|
|
247
245
|
"editor.record.form.field.onlineResource.fileSize": "",
|
|
@@ -419,7 +417,6 @@
|
|
|
419
417
|
"record.action.delete": "",
|
|
420
418
|
"record.action.download": "",
|
|
421
419
|
"record.action.duplicate": "",
|
|
422
|
-
"record.action.duplicating": "",
|
|
423
420
|
"record.action.view": "",
|
|
424
421
|
"record.externalViewer.open": "",
|
|
425
422
|
"record.feature.limit": "",
|
package/translations/fr.json
CHANGED
|
@@ -238,10 +238,8 @@
|
|
|
238
238
|
"editor.record.form.field.onlineResource.dialogTitle": "Modifier l'aperçu du jeu de données",
|
|
239
239
|
"editor.record.form.field.onlineResource.edit.description": "Description",
|
|
240
240
|
"editor.record.form.field.onlineResource.edit.protocol": "Protocole",
|
|
241
|
-
"editor.record.form.field.onlineResource.edit.identifier.error": "Impossible de récupérer les couches depuis le protocole",
|
|
242
241
|
"editor.record.form.field.onlineResource.edit.identifier.placeholder": "Nom de la couche",
|
|
243
242
|
"editor.record.form.field.onlineResource.edit.identifier.placeholder.wps": "Nom du processus",
|
|
244
|
-
"editor.record.form.field.onlineResource.edit.identifier.select.label": "Sélectionner une couche",
|
|
245
243
|
"editor.record.form.field.onlineResource.edit.identifier.submit": "Lier le service",
|
|
246
244
|
"editor.record.form.field.onlineResource.edit.title": "Titre",
|
|
247
245
|
"editor.record.form.field.onlineResource.fileSize": "{sizeMB} Mo",
|
|
@@ -419,7 +417,6 @@
|
|
|
419
417
|
"record.action.delete": "Supprimer",
|
|
420
418
|
"record.action.download": "Télécharger",
|
|
421
419
|
"record.action.duplicate": "Dupliquer",
|
|
422
|
-
"record.action.duplicating": "Duplication...",
|
|
423
420
|
"record.action.view": "Voir",
|
|
424
421
|
"record.externalViewer.open": "Ouvrir dans le visualiseur externe",
|
|
425
422
|
"record.feature.limit": "La ressource contient plus de {count} entités et ne peut pas être affichée ici.",
|
package/translations/it.json
CHANGED
|
@@ -232,10 +232,8 @@
|
|
|
232
232
|
"editor.record.form.field.keywords": "Parole chiave",
|
|
233
233
|
"editor.record.form.field.legalConstraints": "Vincolo legale",
|
|
234
234
|
"editor.record.form.field.license": "Licenza",
|
|
235
|
-
"editor.record.form.field.onlineResource.edit.identifier.error": "Impossibile recuperare i livelli dal protocollo",
|
|
236
235
|
"editor.record.form.field.onlineResource.edit.identifier.placeholder": "Nome del livello",
|
|
237
236
|
"editor.record.form.field.onlineResource.edit.identifier.placeholder.wps": "Nome del processo",
|
|
238
|
-
"editor.record.form.field.onlineResource.edit.identifier.select.label": "Seleziona un livello",
|
|
239
237
|
"editor.record.form.field.onlineResource.edit.identifier.submit": "Collegare il servizio",
|
|
240
238
|
"editor.record.form.field.title.placeholder": "Inserisci un titolo",
|
|
241
239
|
"editor.record.form.field.onlineLinkResources": "Risorse allegate",
|
|
@@ -421,7 +419,6 @@
|
|
|
421
419
|
"record.action.delete": "Elimina",
|
|
422
420
|
"record.action.download": "Scarica",
|
|
423
421
|
"record.action.duplicate": "Duplicato",
|
|
424
|
-
"record.action.duplicating": "",
|
|
425
422
|
"record.action.view": "Visualizza",
|
|
426
423
|
"record.externalViewer.open": "Aprire nel visualizzatore esterno",
|
|
427
424
|
"record.feature.limit": "La risorsa contiene più di {count} funzionalità e non può essere visualizzata qui.",
|
package/translations/nl.json
CHANGED
|
@@ -238,10 +238,8 @@
|
|
|
238
238
|
"editor.record.form.field.onlineResource.dialogTitle": "",
|
|
239
239
|
"editor.record.form.field.onlineResource.edit.description": "",
|
|
240
240
|
"editor.record.form.field.onlineResource.edit.protocol": "",
|
|
241
|
-
"editor.record.form.field.onlineResource.edit.identifier.error": "Kan lagen niet ophalen van het protocol",
|
|
242
241
|
"editor.record.form.field.onlineResource.edit.identifier.placeholder": "Laagnaam",
|
|
243
242
|
"editor.record.form.field.onlineResource.edit.identifier.placeholder.wps": "Procesnaam",
|
|
244
|
-
"editor.record.form.field.onlineResource.edit.identifier.select.label": "Selecteer een laag",
|
|
245
243
|
"editor.record.form.field.onlineResource.edit.identifier.submit": "Link naar de dienst",
|
|
246
244
|
"editor.record.form.field.onlineResource.edit.title": "",
|
|
247
245
|
"editor.record.form.field.onlineResource.fileSize": "",
|
|
@@ -419,7 +417,6 @@
|
|
|
419
417
|
"record.action.delete": "",
|
|
420
418
|
"record.action.download": "",
|
|
421
419
|
"record.action.duplicate": "",
|
|
422
|
-
"record.action.duplicating": "",
|
|
423
420
|
"record.action.view": "",
|
|
424
421
|
"record.externalViewer.open": "",
|
|
425
422
|
"record.feature.limit": "",
|
package/translations/pt.json
CHANGED
|
@@ -238,10 +238,8 @@
|
|
|
238
238
|
"editor.record.form.field.onlineResource.dialogTitle": "",
|
|
239
239
|
"editor.record.form.field.onlineResource.edit.description": "",
|
|
240
240
|
"editor.record.form.field.onlineResource.edit.protocol": "",
|
|
241
|
-
"editor.record.form.field.onlineResource.edit.identifier.error": "Não é possível recuperar camadas do protocolo",
|
|
242
241
|
"editor.record.form.field.onlineResource.edit.identifier.placeholder": "Nome da camada",
|
|
243
242
|
"editor.record.form.field.onlineResource.edit.identifier.placeholder.wps": "Nome do processo",
|
|
244
|
-
"editor.record.form.field.onlineResource.edit.identifier.select.label": "Selecione uma camada",
|
|
245
243
|
"editor.record.form.field.onlineResource.edit.identifier.submit": "Link para o serviço",
|
|
246
244
|
"editor.record.form.field.onlineResource.edit.title": "",
|
|
247
245
|
"editor.record.form.field.onlineResource.fileSize": "",
|
|
@@ -419,7 +417,6 @@
|
|
|
419
417
|
"record.action.delete": "",
|
|
420
418
|
"record.action.download": "",
|
|
421
419
|
"record.action.duplicate": "",
|
|
422
|
-
"record.action.duplicating": "",
|
|
423
420
|
"record.action.view": "",
|
|
424
421
|
"record.externalViewer.open": "",
|
|
425
422
|
"record.feature.limit": "",
|
package/translations/sk.json
CHANGED
|
@@ -238,10 +238,8 @@
|
|
|
238
238
|
"editor.record.form.field.onlineResource.dialogTitle": "",
|
|
239
239
|
"editor.record.form.field.onlineResource.edit.description": "",
|
|
240
240
|
"editor.record.form.field.onlineResource.edit.protocol": "",
|
|
241
|
-
"editor.record.form.field.onlineResource.edit.identifier.error": "Nie je možné načítať vrstvy z protokolu",
|
|
242
241
|
"editor.record.form.field.onlineResource.edit.identifier.placeholder": "Názov vrstvy",
|
|
243
242
|
"editor.record.form.field.onlineResource.edit.identifier.placeholder.wps": "Názov procesu",
|
|
244
|
-
"editor.record.form.field.onlineResource.edit.identifier.select.label": "Vyberte vrstvu",
|
|
245
243
|
"editor.record.form.field.onlineResource.edit.identifier.submit": "Odkaz na službu",
|
|
246
244
|
"editor.record.form.field.onlineResource.edit.title": "",
|
|
247
245
|
"editor.record.form.field.onlineResource.fileSize": "",
|
|
@@ -419,7 +417,6 @@
|
|
|
419
417
|
"record.action.delete": "",
|
|
420
418
|
"record.action.download": "Stiahnuť",
|
|
421
419
|
"record.action.duplicate": "",
|
|
422
|
-
"record.action.duplicating": "",
|
|
423
420
|
"record.action.view": "Zobraziť",
|
|
424
421
|
"record.externalViewer.open": "Otvoriť v externom mapovom prehliadači",
|
|
425
422
|
"record.feature.limit": "",
|