umap-project 3.0.2__py3-none-any.whl → 3.0.3__py3-none-any.whl
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.
- umap/__init__.py +1 -1
- umap/locale/en/LC_MESSAGES/django.po +11 -7
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +11 -7
- umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- umap/locale/nl/LC_MESSAGES/django.po +136 -56
- umap/settings/base.py +2 -2
- umap/static/umap/base.css +4 -0
- umap/static/umap/css/bar.css +1 -1
- umap/static/umap/js/modules/browser.js +1 -0
- umap/static/umap/js/modules/caption.js +2 -2
- umap/static/umap/js/modules/data/features.js +3 -4
- umap/static/umap/js/modules/data/layer.js +9 -1
- umap/static/umap/js/modules/form/fields.js +4 -2
- umap/static/umap/js/modules/importers/cadastrefr.js +14 -12
- umap/static/umap/js/modules/importers/geodatamine.js +11 -9
- umap/static/umap/js/modules/rendering/map.js +2 -4
- umap/static/umap/js/modules/schema.js +12 -0
- umap/static/umap/js/modules/ui/bar.js +2 -2
- umap/static/umap/js/modules/umap.js +23 -0
- umap/static/umap/js/umap.controls.js +3 -3
- umap/static/umap/locale/cs_CZ.js +4 -2
- umap/static/umap/locale/cs_CZ.json +4 -2
- umap/static/umap/locale/de.js +4 -2
- umap/static/umap/locale/de.json +4 -2
- umap/static/umap/locale/en.js +4 -2
- umap/static/umap/locale/en.json +4 -2
- umap/static/umap/locale/es.js +4 -2
- umap/static/umap/locale/es.json +4 -2
- umap/static/umap/locale/eu.js +4 -2
- umap/static/umap/locale/eu.json +4 -2
- umap/static/umap/locale/fa_IR.js +4 -2
- umap/static/umap/locale/fa_IR.json +4 -2
- umap/static/umap/locale/fr.js +4 -2
- umap/static/umap/locale/fr.json +4 -2
- umap/static/umap/locale/gl.js +4 -2
- umap/static/umap/locale/gl.json +4 -2
- umap/static/umap/locale/hu.js +4 -2
- umap/static/umap/locale/hu.json +4 -2
- umap/static/umap/locale/it.js +4 -2
- umap/static/umap/locale/it.json +4 -2
- umap/static/umap/locale/nl.js +12 -10
- umap/static/umap/locale/nl.json +12 -10
- umap/static/umap/locale/pt.js +4 -2
- umap/static/umap/locale/pt.json +4 -2
- umap/static/umap/locale/pt_PT.js +4 -2
- umap/static/umap/locale/pt_PT.json +4 -2
- umap/static/umap/locale/zh_TW.js +4 -2
- umap/static/umap/locale/zh_TW.json +4 -2
- umap/static/umap/map.css +1 -0
- umap/templates/umap/search.html +10 -1
- umap/tests/integration/test_edit_map.py +1 -7
- umap/tests/integration/test_picto.py +10 -2
- umap/views.py +6 -3
- {umap_project-3.0.2.dist-info → umap_project-3.0.3.dist-info}/METADATA +1 -1
- {umap_project-3.0.2.dist-info → umap_project-3.0.3.dist-info}/RECORD +59 -59
- {umap_project-3.0.2.dist-info → umap_project-3.0.3.dist-info}/WHEEL +0 -0
- {umap_project-3.0.2.dist-info → umap_project-3.0.3.dist-info}/entry_points.txt +0 -0
- {umap_project-3.0.2.dist-info → umap_project-3.0.3.dist-info}/licenses/LICENSE +0 -0
|
@@ -16,15 +16,17 @@ const BOUNDARY_TYPES = {
|
|
|
16
16
|
const TEMPLATE = `
|
|
17
17
|
<h3>GeoDataMine</h3>
|
|
18
18
|
<p>${translate('GeoDataMine: thematic data from OpenStreetMap')}.</p>
|
|
19
|
-
<
|
|
20
|
-
<
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
<
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
19
|
+
<div class="formbox">
|
|
20
|
+
<select name="theme">
|
|
21
|
+
<option value="">${translate('Choose a theme')}</option>
|
|
22
|
+
</select>
|
|
23
|
+
<label>
|
|
24
|
+
<input type="checkbox" name="aspoint" />
|
|
25
|
+
${translate('Simplify all geometries to points')}
|
|
26
|
+
</label>
|
|
27
|
+
<label id="boundary">
|
|
28
|
+
</label>
|
|
29
|
+
</div>
|
|
28
30
|
`
|
|
29
31
|
|
|
30
32
|
class Autocomplete extends SingleMixin(BaseAjax) {
|
|
@@ -23,6 +23,7 @@ BaseMap.mergeOptions({
|
|
|
23
23
|
|
|
24
24
|
const ControlsMixin = {
|
|
25
25
|
HIDDABLE_CONTROLS: [
|
|
26
|
+
'home',
|
|
26
27
|
'zoom',
|
|
27
28
|
'search',
|
|
28
29
|
'fullscreen',
|
|
@@ -41,6 +42,7 @@ const ControlsMixin = {
|
|
|
41
42
|
if (this._umap.hasEditMode() && !this.options.noControl) {
|
|
42
43
|
new U.EditControl(this).addTo(this)
|
|
43
44
|
}
|
|
45
|
+
this._controls.home = new U.HomeControl(this._umap)
|
|
44
46
|
this._controls.zoom = new Control.Zoom({
|
|
45
47
|
zoomInTitle: translate('Zoom in'),
|
|
46
48
|
zoomOutTitle: translate('Zoom out'),
|
|
@@ -91,10 +93,6 @@ const ControlsMixin = {
|
|
|
91
93
|
}
|
|
92
94
|
if (this.options.noControl) return
|
|
93
95
|
|
|
94
|
-
// Do not display in an iframe.
|
|
95
|
-
if (window.self === window.top) {
|
|
96
|
-
this._controls.home = new U.HomeControl().addTo(this)
|
|
97
|
-
}
|
|
98
96
|
this._controls.attribution = new U.AttributionControl().addTo(this)
|
|
99
97
|
if (this.options.miniMap) {
|
|
100
98
|
this.whenReady(function () {
|
|
@@ -204,6 +204,12 @@ export const SCHEMA = {
|
|
|
204
204
|
type: Object,
|
|
205
205
|
impacts: ['data'],
|
|
206
206
|
},
|
|
207
|
+
homeControl: {
|
|
208
|
+
type: Boolean,
|
|
209
|
+
impacts: ['ui'],
|
|
210
|
+
label: translate('Display the back to home icon'),
|
|
211
|
+
default: true,
|
|
212
|
+
},
|
|
207
213
|
iconClass: {
|
|
208
214
|
type: String,
|
|
209
215
|
impacts: ['data'],
|
|
@@ -275,6 +281,12 @@ export const SCHEMA = {
|
|
|
275
281
|
label: translate('Label key'),
|
|
276
282
|
inheritable: true,
|
|
277
283
|
},
|
|
284
|
+
layerSwitcher: {
|
|
285
|
+
type: Boolean,
|
|
286
|
+
impacts: ['ui'],
|
|
287
|
+
label: translate('Do you want to display layer switcher in caption bar?'),
|
|
288
|
+
default: true,
|
|
289
|
+
},
|
|
278
290
|
licence: {
|
|
279
291
|
type: String,
|
|
280
292
|
impacts: ['ui'],
|
|
@@ -180,7 +180,7 @@ const BOTTOM_BAR_TEMPLATE = `
|
|
|
180
180
|
<button class="umap-about-link flat" type="button" title="${translate('Open caption')}" data-ref="caption">${translate('Open caption')}</button>
|
|
181
181
|
<button class="umap-open-browser-link flat" type="button" title="${translate('Browse data')}" data-ref="browse">${translate('Browse data')}</button>
|
|
182
182
|
<button class="umap-open-browser-link flat" type="button" title="${translate('Filter data')}" data-ref="filter">${translate('Filter data')}</button>
|
|
183
|
-
<select data-ref=layers></select>
|
|
183
|
+
<select data-ref="layers"></select>
|
|
184
184
|
</div>
|
|
185
185
|
`
|
|
186
186
|
|
|
@@ -233,7 +233,7 @@ export class BottomBar extends WithTemplate {
|
|
|
233
233
|
this.elements.layers.hidden = true
|
|
234
234
|
} else {
|
|
235
235
|
this.elements.layers.appendChild(Utils.loadTemplate(`<option value=""></option>`))
|
|
236
|
-
this.elements.layers.hidden =
|
|
236
|
+
this.elements.layers.hidden = !this._umap.getProperty('layerSwitcher')
|
|
237
237
|
const visible = datalayers.filter((datalayer) => datalayer.isVisible())
|
|
238
238
|
for (const datalayer of datalayers) {
|
|
239
239
|
const selected = visible.length === 1 && datalayer.isVisible() ? 'selected' : ''
|
|
@@ -57,6 +57,8 @@ export default class Umap {
|
|
|
57
57
|
},
|
|
58
58
|
geojson.properties
|
|
59
59
|
)
|
|
60
|
+
this.createdAt = new Date(this.properties.created_at)
|
|
61
|
+
this.modifiedAt = this.properties.modified_at
|
|
60
62
|
this.searchParams = new URLSearchParams(window.location.search)
|
|
61
63
|
|
|
62
64
|
// Locale name (pt_PT, en_US…)
|
|
@@ -104,6 +106,11 @@ export default class Umap {
|
|
|
104
106
|
|
|
105
107
|
if (geojson.properties.schema) this.overrideSchema(geojson.properties.schema)
|
|
106
108
|
|
|
109
|
+
// Do not display in an iframe.
|
|
110
|
+
if (window.self !== window.top) {
|
|
111
|
+
geojson.properties.homeControl = false
|
|
112
|
+
}
|
|
113
|
+
|
|
107
114
|
this._leafletMap.setup()
|
|
108
115
|
|
|
109
116
|
this.panel = new Panel(this, this._leafletMap)
|
|
@@ -237,6 +244,20 @@ export default class Umap {
|
|
|
237
244
|
this._activeFeature = feature
|
|
238
245
|
}
|
|
239
246
|
|
|
247
|
+
get modifiedAt() {
|
|
248
|
+
return this._modifiedAt
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
set modifiedAt(at) {
|
|
252
|
+
if (!at) return
|
|
253
|
+
if (typeof at === 'string') {
|
|
254
|
+
at = new Date(at)
|
|
255
|
+
}
|
|
256
|
+
if (!this._modifiedAt || at > this._modifiedAt) {
|
|
257
|
+
this._modifiedAt = at
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
|
|
240
261
|
setPropertiesFromQueryString() {
|
|
241
262
|
const asBoolean = (key) => {
|
|
242
263
|
const value = this.searchParams.get(key)
|
|
@@ -812,6 +833,7 @@ export default class Umap {
|
|
|
812
833
|
UIFields.push(`properties.${name}Control`)
|
|
813
834
|
}
|
|
814
835
|
UIFields = UIFields.concat([
|
|
836
|
+
'properties.homeControl',
|
|
815
837
|
'properties.moreControl',
|
|
816
838
|
'properties.scrollWheelZoom',
|
|
817
839
|
'properties.miniMap',
|
|
@@ -820,6 +842,7 @@ export default class Umap {
|
|
|
820
842
|
'properties.displayPopupFooter',
|
|
821
843
|
'properties.captionBar',
|
|
822
844
|
'properties.captionMenus',
|
|
845
|
+
'properties.layerSwitcher',
|
|
823
846
|
])
|
|
824
847
|
const builder = new MutatingForm(this, UIFields, { umap: this })
|
|
825
848
|
const controlsOptions = DomUtil.createFieldset(
|
|
@@ -629,7 +629,7 @@ U.Editable = L.Editable.extend({
|
|
|
629
629
|
const line = new U.LineString(this._umap, datalayer, {
|
|
630
630
|
geometry: { type: 'LineString', coordinates: [] },
|
|
631
631
|
})
|
|
632
|
-
line.
|
|
632
|
+
line._needs_upsert = true
|
|
633
633
|
return line.ui
|
|
634
634
|
},
|
|
635
635
|
|
|
@@ -638,7 +638,7 @@ U.Editable = L.Editable.extend({
|
|
|
638
638
|
const poly = new U.Polygon(this._umap, datalayer, {
|
|
639
639
|
geometry: { type: 'Polygon', coordinates: [] },
|
|
640
640
|
})
|
|
641
|
-
poly.
|
|
641
|
+
poly._needs_upsert = true
|
|
642
642
|
return poly.ui
|
|
643
643
|
},
|
|
644
644
|
|
|
@@ -647,7 +647,7 @@ U.Editable = L.Editable.extend({
|
|
|
647
647
|
const point = new U.Point(this._umap, datalayer, {
|
|
648
648
|
geometry: { type: 'Point', coordinates: [latlng.lng, latlng.lat] },
|
|
649
649
|
})
|
|
650
|
-
point.
|
|
650
|
+
point._needs_upsert = true
|
|
651
651
|
return point.ui
|
|
652
652
|
},
|
|
653
653
|
|
umap/static/umap/locale/cs_CZ.js
CHANGED
|
@@ -457,7 +457,6 @@ const locale = {
|
|
|
457
457
|
"Choose this dataset": "Vyberte tuto datovou sadu",
|
|
458
458
|
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: tematická data z OpenStreetMap",
|
|
459
459
|
"Choose a theme": "Vyberte si téma",
|
|
460
|
-
"Symplify all geometries to points": "Zjednodušte všechny geometrie na body",
|
|
461
460
|
"Choose this data": "Zvolte tato data",
|
|
462
461
|
"Search admin boundary": "Hledat hranici správce",
|
|
463
462
|
"Please choose a theme and a boundary first.": "Nejprve si vyberte téma a hranice.",
|
|
@@ -538,7 +537,10 @@ const locale = {
|
|
|
538
537
|
"Images": "Images",
|
|
539
538
|
"Iframes": "Iframes",
|
|
540
539
|
"Tags": "Tags",
|
|
541
|
-
"Geocode": "Geocode"
|
|
540
|
+
"Geocode": "Geocode",
|
|
541
|
+
"Display the back to home icon": "Display the back to home icon",
|
|
542
|
+
"Do you want to display layer switcher in caption bar?": "Do you want to display layer switcher in caption bar?",
|
|
543
|
+
"Simplify all geometries to points": "Simplify all geometries to points"
|
|
542
544
|
}
|
|
543
545
|
L.registerLocale("cs_CZ", locale)
|
|
544
546
|
L.setLocale("cs_CZ")
|
|
@@ -457,7 +457,6 @@
|
|
|
457
457
|
"Choose this dataset": "Vyberte tuto datovou sadu",
|
|
458
458
|
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: tematická data z OpenStreetMap",
|
|
459
459
|
"Choose a theme": "Vyberte si téma",
|
|
460
|
-
"Symplify all geometries to points": "Zjednodušte všechny geometrie na body",
|
|
461
460
|
"Choose this data": "Zvolte tato data",
|
|
462
461
|
"Search admin boundary": "Hledat hranici správce",
|
|
463
462
|
"Please choose a theme and a boundary first.": "Nejprve si vyberte téma a hranice.",
|
|
@@ -538,5 +537,8 @@
|
|
|
538
537
|
"Images": "Images",
|
|
539
538
|
"Iframes": "Iframes",
|
|
540
539
|
"Tags": "Tags",
|
|
541
|
-
"Geocode": "Geocode"
|
|
540
|
+
"Geocode": "Geocode",
|
|
541
|
+
"Display the back to home icon": "Display the back to home icon",
|
|
542
|
+
"Do you want to display layer switcher in caption bar?": "Do you want to display layer switcher in caption bar?",
|
|
543
|
+
"Simplify all geometries to points": "Simplify all geometries to points"
|
|
542
544
|
}
|
umap/static/umap/locale/de.js
CHANGED
|
@@ -457,7 +457,6 @@ const locale = {
|
|
|
457
457
|
"Choose this dataset": "Diesen Datensatz auswählen",
|
|
458
458
|
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: thematische Daten von OpenStreetMap",
|
|
459
459
|
"Choose a theme": "Thema auswählen",
|
|
460
|
-
"Symplify all geometries to points": "Alle Geometrien zu Punkten vereinfachen",
|
|
461
460
|
"Choose this data": "Diese Daten auswählen",
|
|
462
461
|
"Search admin boundary": "Administrative Grenze suchen",
|
|
463
462
|
"Please choose a theme and a boundary first.": "Bitte wähle zuerst ein Thema und eine administrative Grenze.",
|
|
@@ -538,7 +537,10 @@ const locale = {
|
|
|
538
537
|
"Images": "Images",
|
|
539
538
|
"Iframes": "Iframes",
|
|
540
539
|
"Tags": "Tags",
|
|
541
|
-
"Geocode": "Geocode"
|
|
540
|
+
"Geocode": "Geocode",
|
|
541
|
+
"Display the back to home icon": "Display the back to home icon",
|
|
542
|
+
"Do you want to display layer switcher in caption bar?": "Do you want to display layer switcher in caption bar?",
|
|
543
|
+
"Simplify all geometries to points": "Simplify all geometries to points"
|
|
542
544
|
}
|
|
543
545
|
L.registerLocale("de", locale)
|
|
544
546
|
L.setLocale("de")
|
umap/static/umap/locale/de.json
CHANGED
|
@@ -457,7 +457,6 @@
|
|
|
457
457
|
"Choose this dataset": "Diesen Datensatz auswählen",
|
|
458
458
|
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: thematische Daten von OpenStreetMap",
|
|
459
459
|
"Choose a theme": "Thema auswählen",
|
|
460
|
-
"Symplify all geometries to points": "Alle Geometrien zu Punkten vereinfachen",
|
|
461
460
|
"Choose this data": "Diese Daten auswählen",
|
|
462
461
|
"Search admin boundary": "Administrative Grenze suchen",
|
|
463
462
|
"Please choose a theme and a boundary first.": "Bitte wähle zuerst ein Thema und eine administrative Grenze.",
|
|
@@ -538,5 +537,8 @@
|
|
|
538
537
|
"Images": "Images",
|
|
539
538
|
"Iframes": "Iframes",
|
|
540
539
|
"Tags": "Tags",
|
|
541
|
-
"Geocode": "Geocode"
|
|
540
|
+
"Geocode": "Geocode",
|
|
541
|
+
"Display the back to home icon": "Display the back to home icon",
|
|
542
|
+
"Do you want to display layer switcher in caption bar?": "Do you want to display layer switcher in caption bar?",
|
|
543
|
+
"Simplify all geometries to points": "Simplify all geometries to points"
|
|
542
544
|
}
|
umap/static/umap/locale/en.js
CHANGED
|
@@ -457,7 +457,6 @@ const locale = {
|
|
|
457
457
|
"Choose this dataset": "Choose this dataset",
|
|
458
458
|
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: thematic data from OpenStreetMap",
|
|
459
459
|
"Choose a theme": "Choose a theme",
|
|
460
|
-
"Symplify all geometries to points": "Symplify all geometries to points",
|
|
461
460
|
"Choose this data": "Choose this data",
|
|
462
461
|
"Search admin boundary": "Search admin boundary",
|
|
463
462
|
"Please choose a theme and a boundary first.": "Please choose a theme and a boundary first.",
|
|
@@ -538,7 +537,10 @@ const locale = {
|
|
|
538
537
|
"Images": "Images",
|
|
539
538
|
"Iframes": "Iframes",
|
|
540
539
|
"Tags": "Tags",
|
|
541
|
-
"Geocode": "Geocode"
|
|
540
|
+
"Geocode": "Geocode",
|
|
541
|
+
"Display the back to home icon": "Display the back to home icon",
|
|
542
|
+
"Do you want to display layer switcher in caption bar?": "Do you want to display layer switcher in caption bar?",
|
|
543
|
+
"Simplify all geometries to points": "Simplify all geometries to points"
|
|
542
544
|
}
|
|
543
545
|
L.registerLocale("en", locale)
|
|
544
546
|
L.setLocale("en")
|
umap/static/umap/locale/en.json
CHANGED
|
@@ -457,7 +457,6 @@
|
|
|
457
457
|
"Choose this dataset": "Choose this dataset",
|
|
458
458
|
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: thematic data from OpenStreetMap",
|
|
459
459
|
"Choose a theme": "Choose a theme",
|
|
460
|
-
"Symplify all geometries to points": "Symplify all geometries to points",
|
|
461
460
|
"Choose this data": "Choose this data",
|
|
462
461
|
"Search admin boundary": "Search admin boundary",
|
|
463
462
|
"Please choose a theme and a boundary first.": "Please choose a theme and a boundary first.",
|
|
@@ -538,5 +537,8 @@
|
|
|
538
537
|
"Images": "Images",
|
|
539
538
|
"Iframes": "Iframes",
|
|
540
539
|
"Tags": "Tags",
|
|
541
|
-
"Geocode": "Geocode"
|
|
540
|
+
"Geocode": "Geocode",
|
|
541
|
+
"Display the back to home icon": "Display the back to home icon",
|
|
542
|
+
"Do you want to display layer switcher in caption bar?": "Do you want to display layer switcher in caption bar?",
|
|
543
|
+
"Simplify all geometries to points": "Simplify all geometries to points"
|
|
542
544
|
}
|
umap/static/umap/locale/es.js
CHANGED
|
@@ -457,7 +457,6 @@ const locale = {
|
|
|
457
457
|
"Choose this dataset": "Elegir este conjunto de datos",
|
|
458
458
|
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: datos temáticos de OpenStreetMap",
|
|
459
459
|
"Choose a theme": "Elegir un tema",
|
|
460
|
-
"Symplify all geometries to points": "Simplificar todas las geometrías a puntos",
|
|
461
460
|
"Choose this data": "Elegir estos datos",
|
|
462
461
|
"Search admin boundary": "Buscar límite administrativo",
|
|
463
462
|
"Please choose a theme and a boundary first.": "Primero elige un tema y un límite.",
|
|
@@ -538,7 +537,10 @@ const locale = {
|
|
|
538
537
|
"Images": "Images",
|
|
539
538
|
"Iframes": "Iframes",
|
|
540
539
|
"Tags": "Tags",
|
|
541
|
-
"Geocode": "Geocode"
|
|
540
|
+
"Geocode": "Geocode",
|
|
541
|
+
"Display the back to home icon": "Display the back to home icon",
|
|
542
|
+
"Do you want to display layer switcher in caption bar?": "Do you want to display layer switcher in caption bar?",
|
|
543
|
+
"Simplify all geometries to points": "Simplify all geometries to points"
|
|
542
544
|
}
|
|
543
545
|
L.registerLocale("es", locale)
|
|
544
546
|
L.setLocale("es")
|
umap/static/umap/locale/es.json
CHANGED
|
@@ -457,7 +457,6 @@
|
|
|
457
457
|
"Choose this dataset": "Elegir este conjunto de datos",
|
|
458
458
|
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: datos temáticos de OpenStreetMap",
|
|
459
459
|
"Choose a theme": "Elegir un tema",
|
|
460
|
-
"Symplify all geometries to points": "Simplificar todas las geometrías a puntos",
|
|
461
460
|
"Choose this data": "Elegir estos datos",
|
|
462
461
|
"Search admin boundary": "Buscar límite administrativo",
|
|
463
462
|
"Please choose a theme and a boundary first.": "Primero elige un tema y un límite.",
|
|
@@ -538,5 +537,8 @@
|
|
|
538
537
|
"Images": "Images",
|
|
539
538
|
"Iframes": "Iframes",
|
|
540
539
|
"Tags": "Tags",
|
|
541
|
-
"Geocode": "Geocode"
|
|
540
|
+
"Geocode": "Geocode",
|
|
541
|
+
"Display the back to home icon": "Display the back to home icon",
|
|
542
|
+
"Do you want to display layer switcher in caption bar?": "Do you want to display layer switcher in caption bar?",
|
|
543
|
+
"Simplify all geometries to points": "Simplify all geometries to points"
|
|
542
544
|
}
|
umap/static/umap/locale/eu.js
CHANGED
|
@@ -457,7 +457,6 @@ const locale = {
|
|
|
457
457
|
"Choose this dataset": "Aukeratu datu-multzo hau",
|
|
458
458
|
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: OpenStreetMap-eko datu tematikoak",
|
|
459
459
|
"Choose a theme": "Aukeratu gai bat",
|
|
460
|
-
"Symplify all geometries to points": "Sinplifikatu geometria guztiak puntutan",
|
|
461
460
|
"Choose this data": "Aukeratu datu hauek",
|
|
462
461
|
"Search admin boundary": "Bilatu muga administratiboa",
|
|
463
462
|
"Please choose a theme and a boundary first.": "Aukeratu gai bat eta muga bat.",
|
|
@@ -538,7 +537,10 @@ const locale = {
|
|
|
538
537
|
"Images": "Images",
|
|
539
538
|
"Iframes": "Iframes",
|
|
540
539
|
"Tags": "Tags",
|
|
541
|
-
"Geocode": "Geocode"
|
|
540
|
+
"Geocode": "Geocode",
|
|
541
|
+
"Display the back to home icon": "Display the back to home icon",
|
|
542
|
+
"Do you want to display layer switcher in caption bar?": "Do you want to display layer switcher in caption bar?",
|
|
543
|
+
"Simplify all geometries to points": "Simplify all geometries to points"
|
|
542
544
|
}
|
|
543
545
|
L.registerLocale("eu", locale)
|
|
544
546
|
L.setLocale("eu")
|
umap/static/umap/locale/eu.json
CHANGED
|
@@ -457,7 +457,6 @@
|
|
|
457
457
|
"Choose this dataset": "Aukeratu datu-multzo hau",
|
|
458
458
|
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: OpenStreetMap-eko datu tematikoak",
|
|
459
459
|
"Choose a theme": "Aukeratu gai bat",
|
|
460
|
-
"Symplify all geometries to points": "Sinplifikatu geometria guztiak puntutan",
|
|
461
460
|
"Choose this data": "Aukeratu datu hauek",
|
|
462
461
|
"Search admin boundary": "Bilatu muga administratiboa",
|
|
463
462
|
"Please choose a theme and a boundary first.": "Aukeratu gai bat eta muga bat.",
|
|
@@ -538,5 +537,8 @@
|
|
|
538
537
|
"Images": "Images",
|
|
539
538
|
"Iframes": "Iframes",
|
|
540
539
|
"Tags": "Tags",
|
|
541
|
-
"Geocode": "Geocode"
|
|
540
|
+
"Geocode": "Geocode",
|
|
541
|
+
"Display the back to home icon": "Display the back to home icon",
|
|
542
|
+
"Do you want to display layer switcher in caption bar?": "Do you want to display layer switcher in caption bar?",
|
|
543
|
+
"Simplify all geometries to points": "Simplify all geometries to points"
|
|
542
544
|
}
|
umap/static/umap/locale/fa_IR.js
CHANGED
|
@@ -457,7 +457,6 @@ const locale = {
|
|
|
457
457
|
"Choose this dataset": "انتخاب این مجموعهداده",
|
|
458
458
|
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine:دادههای موضوعی از اوپناستریتمپ",
|
|
459
459
|
"Choose a theme": "یک موضوع انتخاب کنید",
|
|
460
|
-
"Symplify all geometries to points": "همهٔ هندسهها به نقطه ساده شوند",
|
|
461
460
|
"Choose this data": "انتخاب این داده",
|
|
462
461
|
"Search admin boundary": "جستجوی تقسیمات (admin boundary)",
|
|
463
462
|
"Please choose a theme and a boundary first.": "لطفاً ابتدا یک موضوع و یک تقسیمات انتخاب کنید.",
|
|
@@ -538,7 +537,10 @@ const locale = {
|
|
|
538
537
|
"Images": "Images",
|
|
539
538
|
"Iframes": "Iframes",
|
|
540
539
|
"Tags": "Tags",
|
|
541
|
-
"Geocode": "Geocode"
|
|
540
|
+
"Geocode": "Geocode",
|
|
541
|
+
"Display the back to home icon": "Display the back to home icon",
|
|
542
|
+
"Do you want to display layer switcher in caption bar?": "Do you want to display layer switcher in caption bar?",
|
|
543
|
+
"Simplify all geometries to points": "Simplify all geometries to points"
|
|
542
544
|
}
|
|
543
545
|
L.registerLocale("fa_IR", locale)
|
|
544
546
|
L.setLocale("fa_IR")
|
|
@@ -457,7 +457,6 @@
|
|
|
457
457
|
"Choose this dataset": "انتخاب این مجموعهداده",
|
|
458
458
|
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine:دادههای موضوعی از اوپناستریتمپ",
|
|
459
459
|
"Choose a theme": "یک موضوع انتخاب کنید",
|
|
460
|
-
"Symplify all geometries to points": "همهٔ هندسهها به نقطه ساده شوند",
|
|
461
460
|
"Choose this data": "انتخاب این داده",
|
|
462
461
|
"Search admin boundary": "جستجوی تقسیمات (admin boundary)",
|
|
463
462
|
"Please choose a theme and a boundary first.": "لطفاً ابتدا یک موضوع و یک تقسیمات انتخاب کنید.",
|
|
@@ -538,5 +537,8 @@
|
|
|
538
537
|
"Images": "Images",
|
|
539
538
|
"Iframes": "Iframes",
|
|
540
539
|
"Tags": "Tags",
|
|
541
|
-
"Geocode": "Geocode"
|
|
540
|
+
"Geocode": "Geocode",
|
|
541
|
+
"Display the back to home icon": "Display the back to home icon",
|
|
542
|
+
"Do you want to display layer switcher in caption bar?": "Do you want to display layer switcher in caption bar?",
|
|
543
|
+
"Simplify all geometries to points": "Simplify all geometries to points"
|
|
542
544
|
}
|
umap/static/umap/locale/fr.js
CHANGED
|
@@ -457,7 +457,6 @@ const locale = {
|
|
|
457
457
|
"Choose this dataset": "Choisir ce jeu de données",
|
|
458
458
|
"GeoDataMine: thematic data from OpenStreetMap": "GéoDataMine : données thématiques à partir d'OpenStreetMap",
|
|
459
459
|
"Choose a theme": "Choisir un thème",
|
|
460
|
-
"Symplify all geometries to points": "Simplifier les géométries en points",
|
|
461
460
|
"Choose this data": "Choisir ces données",
|
|
462
461
|
"Search admin boundary": "Chercher une limite administrative",
|
|
463
462
|
"Please choose a theme and a boundary first.": "Merci de choisir un thème et une limite administrative.",
|
|
@@ -538,7 +537,10 @@ const locale = {
|
|
|
538
537
|
"Images": "Images",
|
|
539
538
|
"Iframes": "Iframes",
|
|
540
539
|
"Tags": "Catégories",
|
|
541
|
-
"Geocode": "Géocoder"
|
|
540
|
+
"Geocode": "Géocoder",
|
|
541
|
+
"Display the back to home icon": "Afficher le bouton de retour à l'accueil",
|
|
542
|
+
"Do you want to display layer switcher in caption bar?": "Afficher un sélecteur de calques dans la barre de légende ?",
|
|
543
|
+
"Simplify all geometries to points": "Simplifier les géométries en points"
|
|
542
544
|
}
|
|
543
545
|
L.registerLocale("fr", locale)
|
|
544
546
|
L.setLocale("fr")
|
umap/static/umap/locale/fr.json
CHANGED
|
@@ -457,7 +457,6 @@
|
|
|
457
457
|
"Choose this dataset": "Choisir ce jeu de données",
|
|
458
458
|
"GeoDataMine: thematic data from OpenStreetMap": "GéoDataMine : données thématiques à partir d'OpenStreetMap",
|
|
459
459
|
"Choose a theme": "Choisir un thème",
|
|
460
|
-
"Symplify all geometries to points": "Simplifier les géométries en points",
|
|
461
460
|
"Choose this data": "Choisir ces données",
|
|
462
461
|
"Search admin boundary": "Chercher une limite administrative",
|
|
463
462
|
"Please choose a theme and a boundary first.": "Merci de choisir un thème et une limite administrative.",
|
|
@@ -538,5 +537,8 @@
|
|
|
538
537
|
"Images": "Images",
|
|
539
538
|
"Iframes": "Iframes",
|
|
540
539
|
"Tags": "Catégories",
|
|
541
|
-
"Geocode": "Géocoder"
|
|
540
|
+
"Geocode": "Géocoder",
|
|
541
|
+
"Display the back to home icon": "Afficher le bouton de retour à l'accueil",
|
|
542
|
+
"Do you want to display layer switcher in caption bar?": "Afficher un sélecteur de calques dans la barre de légende ?",
|
|
543
|
+
"Simplify all geometries to points": "Simplifier les géométries en points"
|
|
542
544
|
}
|
umap/static/umap/locale/gl.js
CHANGED
|
@@ -457,7 +457,6 @@ const locale = {
|
|
|
457
457
|
"Choose this dataset": "Escoller este conxunto de datos",
|
|
458
458
|
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: datos temáticos de OpenStreetMap",
|
|
459
459
|
"Choose a theme": "Escoller un tema",
|
|
460
|
-
"Symplify all geometries to points": "Simplificar todas as xeometrías a puntos",
|
|
461
460
|
"Choose this data": "Escoller estes datos",
|
|
462
461
|
"Search admin boundary": "Buscar un límite administrativo",
|
|
463
462
|
"Please choose a theme and a boundary first.": "Escolle primeiro un tema e un límite.",
|
|
@@ -538,7 +537,10 @@ const locale = {
|
|
|
538
537
|
"Images": "Images",
|
|
539
538
|
"Iframes": "Iframes",
|
|
540
539
|
"Tags": "Tags",
|
|
541
|
-
"Geocode": "Geocode"
|
|
540
|
+
"Geocode": "Geocode",
|
|
541
|
+
"Display the back to home icon": "Display the back to home icon",
|
|
542
|
+
"Do you want to display layer switcher in caption bar?": "Do you want to display layer switcher in caption bar?",
|
|
543
|
+
"Simplify all geometries to points": "Simplify all geometries to points"
|
|
542
544
|
}
|
|
543
545
|
L.registerLocale("gl", locale)
|
|
544
546
|
L.setLocale("gl")
|
umap/static/umap/locale/gl.json
CHANGED
|
@@ -457,7 +457,6 @@
|
|
|
457
457
|
"Choose this dataset": "Escoller este conxunto de datos",
|
|
458
458
|
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: datos temáticos de OpenStreetMap",
|
|
459
459
|
"Choose a theme": "Escoller un tema",
|
|
460
|
-
"Symplify all geometries to points": "Simplificar todas as xeometrías a puntos",
|
|
461
460
|
"Choose this data": "Escoller estes datos",
|
|
462
461
|
"Search admin boundary": "Buscar un límite administrativo",
|
|
463
462
|
"Please choose a theme and a boundary first.": "Escolle primeiro un tema e un límite.",
|
|
@@ -538,5 +537,8 @@
|
|
|
538
537
|
"Images": "Images",
|
|
539
538
|
"Iframes": "Iframes",
|
|
540
539
|
"Tags": "Tags",
|
|
541
|
-
"Geocode": "Geocode"
|
|
540
|
+
"Geocode": "Geocode",
|
|
541
|
+
"Display the back to home icon": "Display the back to home icon",
|
|
542
|
+
"Do you want to display layer switcher in caption bar?": "Do you want to display layer switcher in caption bar?",
|
|
543
|
+
"Simplify all geometries to points": "Simplify all geometries to points"
|
|
542
544
|
}
|
umap/static/umap/locale/hu.js
CHANGED
|
@@ -457,7 +457,6 @@ const locale = {
|
|
|
457
457
|
"Choose this dataset": "Ezen adatkészlet kiválasztása",
|
|
458
458
|
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: tematikus adatok az OpenStreetMap-ről",
|
|
459
459
|
"Choose a theme": "Téma kiválasztása",
|
|
460
|
-
"Symplify all geometries to points": "Az összes alakzat egyszerűsítése pontokká",
|
|
461
460
|
"Choose this data": "Ezen adatok kiválasztása",
|
|
462
461
|
"Search admin boundary": "Közigazgatási határ keresése",
|
|
463
462
|
"Please choose a theme and a boundary first.": "Először válasszon ki egy témát és egy határt.",
|
|
@@ -538,7 +537,10 @@ const locale = {
|
|
|
538
537
|
"Images": "Images",
|
|
539
538
|
"Iframes": "Iframes",
|
|
540
539
|
"Tags": "Tags",
|
|
541
|
-
"Geocode": "Geocode"
|
|
540
|
+
"Geocode": "Geocode",
|
|
541
|
+
"Display the back to home icon": "Display the back to home icon",
|
|
542
|
+
"Do you want to display layer switcher in caption bar?": "Do you want to display layer switcher in caption bar?",
|
|
543
|
+
"Simplify all geometries to points": "Simplify all geometries to points"
|
|
542
544
|
}
|
|
543
545
|
L.registerLocale("hu", locale)
|
|
544
546
|
L.setLocale("hu")
|
umap/static/umap/locale/hu.json
CHANGED
|
@@ -457,7 +457,6 @@
|
|
|
457
457
|
"Choose this dataset": "Ezen adatkészlet kiválasztása",
|
|
458
458
|
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: tematikus adatok az OpenStreetMap-ről",
|
|
459
459
|
"Choose a theme": "Téma kiválasztása",
|
|
460
|
-
"Symplify all geometries to points": "Az összes alakzat egyszerűsítése pontokká",
|
|
461
460
|
"Choose this data": "Ezen adatok kiválasztása",
|
|
462
461
|
"Search admin boundary": "Közigazgatási határ keresése",
|
|
463
462
|
"Please choose a theme and a boundary first.": "Először válasszon ki egy témát és egy határt.",
|
|
@@ -538,5 +537,8 @@
|
|
|
538
537
|
"Images": "Images",
|
|
539
538
|
"Iframes": "Iframes",
|
|
540
539
|
"Tags": "Tags",
|
|
541
|
-
"Geocode": "Geocode"
|
|
540
|
+
"Geocode": "Geocode",
|
|
541
|
+
"Display the back to home icon": "Display the back to home icon",
|
|
542
|
+
"Do you want to display layer switcher in caption bar?": "Do you want to display layer switcher in caption bar?",
|
|
543
|
+
"Simplify all geometries to points": "Simplify all geometries to points"
|
|
542
544
|
}
|
umap/static/umap/locale/it.js
CHANGED
|
@@ -457,7 +457,6 @@ const locale = {
|
|
|
457
457
|
"Choose this dataset": "Scegli questo dataset",
|
|
458
458
|
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: thematic data from OpenStreetMap",
|
|
459
459
|
"Choose a theme": "Seleziona un tema",
|
|
460
|
-
"Symplify all geometries to points": "Semplifica tutte le geometrie in punti",
|
|
461
460
|
"Choose this data": "Seleziona questi dati",
|
|
462
461
|
"Search admin boundary": "Cerca confini amministrativi",
|
|
463
462
|
"Please choose a theme and a boundary first.": "Please choose a theme and a boundary first.",
|
|
@@ -538,7 +537,10 @@ const locale = {
|
|
|
538
537
|
"Images": "Images",
|
|
539
538
|
"Iframes": "Iframes",
|
|
540
539
|
"Tags": "Tags",
|
|
541
|
-
"Geocode": "Geocode"
|
|
540
|
+
"Geocode": "Geocode",
|
|
541
|
+
"Display the back to home icon": "Display the back to home icon",
|
|
542
|
+
"Do you want to display layer switcher in caption bar?": "Do you want to display layer switcher in caption bar?",
|
|
543
|
+
"Simplify all geometries to points": "Simplify all geometries to points"
|
|
542
544
|
}
|
|
543
545
|
L.registerLocale("it", locale)
|
|
544
546
|
L.setLocale("it")
|
umap/static/umap/locale/it.json
CHANGED
|
@@ -457,7 +457,6 @@
|
|
|
457
457
|
"Choose this dataset": "Scegli questo dataset",
|
|
458
458
|
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: thematic data from OpenStreetMap",
|
|
459
459
|
"Choose a theme": "Seleziona un tema",
|
|
460
|
-
"Symplify all geometries to points": "Semplifica tutte le geometrie in punti",
|
|
461
460
|
"Choose this data": "Seleziona questi dati",
|
|
462
461
|
"Search admin boundary": "Cerca confini amministrativi",
|
|
463
462
|
"Please choose a theme and a boundary first.": "Please choose a theme and a boundary first.",
|
|
@@ -538,5 +537,8 @@
|
|
|
538
537
|
"Images": "Images",
|
|
539
538
|
"Iframes": "Iframes",
|
|
540
539
|
"Tags": "Tags",
|
|
541
|
-
"Geocode": "Geocode"
|
|
540
|
+
"Geocode": "Geocode",
|
|
541
|
+
"Display the back to home icon": "Display the back to home icon",
|
|
542
|
+
"Do you want to display layer switcher in caption bar?": "Do you want to display layer switcher in caption bar?",
|
|
543
|
+
"Simplify all geometries to points": "Simplify all geometries to points"
|
|
542
544
|
}
|
umap/static/umap/locale/nl.js
CHANGED
|
@@ -457,7 +457,6 @@ const locale = {
|
|
|
457
457
|
"Choose this dataset": "Kies deze dataset",
|
|
458
458
|
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: thematische data van OpenStreetMap",
|
|
459
459
|
"Choose a theme": "Kies een thema",
|
|
460
|
-
"Symplify all geometries to points": "Symplificeer alle geometrieën tot punten",
|
|
461
460
|
"Choose this data": "Kies deze data",
|
|
462
461
|
"Search admin boundary": "Zoeken administrative grens",
|
|
463
462
|
"Please choose a theme and a boundary first.": "Kies eerst een thema en een grens.",
|
|
@@ -528,17 +527,20 @@ const locale = {
|
|
|
528
527
|
"Edit map default view": "Standaardweergave van de kaart bewerken",
|
|
529
528
|
"Use current center and zoom": "Gebruik huidig centrum en zoomniveau",
|
|
530
529
|
"Layer permalink": "Permalink-laag",
|
|
531
|
-
"Back to home": "
|
|
532
|
-
"Home logo": "
|
|
533
|
-
"Add this geometry to my map": "
|
|
534
|
-
"Add this place to my map": "
|
|
535
|
-
"Cancel last edit": "
|
|
536
|
-
"Redo last edit": "
|
|
537
|
-
"Links": "
|
|
538
|
-
"Images": "
|
|
530
|
+
"Back to home": "Terug naar thuispagina",
|
|
531
|
+
"Home logo": "Thuispagina logo",
|
|
532
|
+
"Add this geometry to my map": "Voeg deze geometrie toe aan mijn kaart",
|
|
533
|
+
"Add this place to my map": "Voeg deze plaats toe aan mijn kaart",
|
|
534
|
+
"Cancel last edit": "Laatste bewerking annuleren",
|
|
535
|
+
"Redo last edit": "Laatste bewerking opnieuw uitvoeren",
|
|
536
|
+
"Links": "Koppelingen",
|
|
537
|
+
"Images": "Afbeeldingen",
|
|
539
538
|
"Iframes": "Iframes",
|
|
540
539
|
"Tags": "Tags",
|
|
541
|
-
"Geocode": "Geocode"
|
|
540
|
+
"Geocode": "Geocode",
|
|
541
|
+
"Display the back to home icon": "Display the back to home icon",
|
|
542
|
+
"Do you want to display layer switcher in caption bar?": "Do you want to display layer switcher in caption bar?",
|
|
543
|
+
"Simplify all geometries to points": "Simplify all geometries to points"
|
|
542
544
|
}
|
|
543
545
|
L.registerLocale("nl", locale)
|
|
544
546
|
L.setLocale("nl")
|