umap-project 2.8.1__py3-none-any.whl → 2.9.0b0__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.
Potentially problematic release.
This version of umap-project might be problematic. Click here for more details.
- umap/__init__.py +1 -1
- umap/asgi.py +12 -7
- umap/context_processors.py +1 -0
- umap/locale/en/LC_MESSAGES/django.po +102 -59
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +105 -61
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +10 -10
- umap/management/commands/empty_trash.py +12 -1
- umap/migrations/0026_datalayer_modified_at_datalayer_share_status.py +26 -0
- umap/models.py +23 -3
- umap/settings/base.py +4 -1
- umap/static/umap/base.css +1 -1
- umap/static/umap/content.css +2 -22
- umap/static/umap/css/bar.css +7 -10
- umap/static/umap/css/form.css +28 -29
- umap/static/umap/css/icon.css +8 -2
- umap/static/umap/css/panel.css +2 -1
- umap/static/umap/css/tooltip.css +33 -31
- umap/static/umap/img/16-white.svg +2 -0
- umap/static/umap/img/16.svg +1 -1
- umap/static/umap/img/providers/bitbucket.png +0 -0
- umap/static/umap/img/providers/github.png +0 -0
- umap/static/umap/img/providers/keycloak.png +0 -0
- umap/static/umap/img/providers/openstreetmap-oauth2.png +0 -0
- umap/static/umap/img/providers/twitter-oauth2.png +0 -0
- umap/static/umap/img/source/16-white.svg +3 -1
- umap/static/umap/img/source/16.svg +1 -1
- umap/static/umap/js/components/alerts/alert.js +4 -1
- umap/static/umap/js/modules/browser.js +6 -6
- umap/static/umap/js/modules/caption.js +30 -7
- umap/static/umap/js/modules/data/features.js +21 -24
- umap/static/umap/js/modules/data/layer.js +71 -33
- umap/static/umap/js/modules/form/builder.js +241 -0
- umap/static/umap/js/modules/form/fields.js +1338 -0
- umap/static/umap/js/modules/formatter.js +5 -8
- umap/static/umap/js/modules/help.js +3 -1
- umap/static/umap/js/modules/importer.js +1 -1
- umap/static/umap/js/modules/permissions.js +5 -4
- umap/static/umap/js/modules/rendering/icon.js +5 -1
- umap/static/umap/js/modules/rendering/layers/classified.js +11 -7
- umap/static/umap/js/modules/rendering/layers/cluster.js +11 -1
- umap/static/umap/js/modules/rendering/map.js +0 -2
- umap/static/umap/js/modules/rules.js +2 -1
- umap/static/umap/js/modules/schema.js +5 -6
- umap/static/umap/js/modules/share.js +3 -3
- umap/static/umap/js/modules/sync/engine.js +18 -13
- umap/static/umap/js/modules/sync/updaters.js +8 -0
- umap/static/umap/js/modules/sync/websocket.js +10 -5
- umap/static/umap/js/modules/tableeditor.js +3 -2
- umap/static/umap/js/modules/ui/bar.js +17 -9
- umap/static/umap/js/modules/ui/base.js +7 -24
- umap/static/umap/js/modules/ui/tooltip.js +19 -11
- umap/static/umap/js/modules/umap.js +39 -27
- umap/static/umap/js/modules/utils.js +196 -12
- umap/static/umap/js/umap.controls.js +1 -13
- umap/static/umap/locale/br.js +21 -13
- umap/static/umap/locale/br.json +21 -13
- umap/static/umap/locale/ca.js +12 -4
- umap/static/umap/locale/ca.json +12 -4
- umap/static/umap/locale/cs_CZ.js +10 -4
- umap/static/umap/locale/cs_CZ.json +10 -4
- umap/static/umap/locale/de.js +12 -4
- umap/static/umap/locale/de.json +12 -4
- umap/static/umap/locale/el.js +12 -4
- umap/static/umap/locale/el.json +12 -4
- umap/static/umap/locale/en.js +9 -4
- umap/static/umap/locale/en.json +9 -4
- umap/static/umap/locale/es.js +20 -12
- umap/static/umap/locale/es.json +20 -12
- umap/static/umap/locale/eu.js +12 -4
- umap/static/umap/locale/eu.json +12 -4
- umap/static/umap/locale/fa_IR.js +12 -4
- umap/static/umap/locale/fa_IR.json +12 -4
- umap/static/umap/locale/fr.js +10 -5
- umap/static/umap/locale/fr.json +10 -5
- umap/static/umap/locale/gl.js +353 -345
- umap/static/umap/locale/gl.json +353 -345
- umap/static/umap/locale/hu.js +34 -26
- umap/static/umap/locale/hu.json +34 -26
- umap/static/umap/locale/it.js +100 -92
- umap/static/umap/locale/it.json +100 -92
- umap/static/umap/locale/ms.js +12 -4
- umap/static/umap/locale/ms.json +12 -4
- umap/static/umap/locale/nl.js +12 -4
- umap/static/umap/locale/nl.json +12 -4
- umap/static/umap/locale/pl.js +12 -4
- umap/static/umap/locale/pl.json +12 -4
- umap/static/umap/locale/pt.js +12 -4
- umap/static/umap/locale/pt.json +12 -4
- umap/static/umap/locale/pt_PT.js +12 -4
- umap/static/umap/locale/pt_PT.json +12 -4
- umap/static/umap/locale/th_TH.js +12 -4
- umap/static/umap/locale/th_TH.json +12 -4
- umap/static/umap/locale/zh_TW.js +10 -4
- umap/static/umap/locale/zh_TW.json +10 -4
- umap/static/umap/map.css +12 -8
- umap/static/umap/nav.css +2 -3
- umap/static/umap/unittests/utils.js +14 -0
- umap/static/umap/vars.css +2 -0
- umap/sync/__init__.py +0 -0
- umap/sync/app.py +181 -0
- umap/sync/payloads.py +49 -0
- umap/templates/auth/user_detail.html +4 -0
- umap/templates/auth/user_form.html +9 -6
- umap/templates/auth/user_stars.html +4 -0
- umap/templates/base.html +1 -1
- umap/templates/registration/login.html +2 -5
- umap/templates/umap/about.html +5 -0
- umap/templates/umap/about_summary.html +2 -2
- umap/templates/umap/components/provider.html +8 -0
- umap/templates/umap/js.html +0 -3
- umap/templates/umap/map_detail.html +1 -1
- umap/templates/umap/password_change.html +4 -0
- umap/templates/umap/password_change_done.html +4 -0
- umap/templates/umap/search.html +4 -0
- umap/templates/umap/team_confirm_delete.html +4 -0
- umap/templates/umap/team_detail.html +4 -0
- umap/templates/umap/team_form.html +4 -0
- umap/templates/umap/user_dashboard.html +1 -1
- umap/templates/umap/user_teams.html +4 -0
- umap/tests/base.py +3 -1
- umap/tests/integration/conftest.py +16 -23
- umap/tests/integration/test_basics.py +2 -2
- umap/tests/integration/test_caption.py +1 -0
- umap/tests/integration/test_draw_polygon.py +3 -3
- umap/tests/integration/test_edit_datalayer.py +1 -1
- umap/tests/integration/test_edit_map.py +3 -3
- umap/tests/integration/test_edit_polygon.py +1 -1
- umap/tests/integration/test_import.py +23 -1
- umap/tests/integration/test_optimistic_merge.py +1 -0
- umap/tests/integration/test_picto.py +8 -8
- umap/tests/integration/test_save.py +1 -0
- umap/tests/integration/test_star.py +13 -9
- umap/tests/integration/test_tableeditor.py +1 -0
- umap/tests/integration/test_websocket_sync.py +112 -33
- umap/tests/settings.py +2 -0
- umap/tests/test_datalayer.py +2 -3
- umap/tests/test_datalayer_views.py +20 -1
- umap/tests/test_empty_trash.py +10 -3
- umap/tests/test_map_views.py +11 -0
- umap/utils.py +24 -11
- umap/views.py +37 -6
- {umap_project-2.8.1.dist-info → umap_project-2.9.0b0.dist-info}/METADATA +15 -15
- {umap_project-2.8.1.dist-info → umap_project-2.9.0b0.dist-info}/RECORD +148 -147
- {umap_project-2.8.1.dist-info → umap_project-2.9.0b0.dist-info}/WHEEL +1 -1
- umap/management/commands/run_websocket_server.py +0 -23
- umap/settings/local_s3.py +0 -45
- umap/static/umap/bitbucket.png +0 -0
- umap/static/umap/github.png +0 -0
- umap/static/umap/js/umap.forms.js +0 -1242
- umap/static/umap/keycloak.png +0 -0
- umap/static/umap/openstreetmap.png +0 -0
- umap/static/umap/twitter.png +0 -0
- umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +0 -468
- umap/tests/test_websocket_server.py +0 -22
- umap/websocket_server.py +0 -202
- {umap_project-2.8.1.dist-info → umap_project-2.9.0b0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.8.1.dist-info → umap_project-2.9.0b0.dist-info}/licenses/LICENSE +0 -0
umap/static/umap/locale/eu.json
CHANGED
|
@@ -19,7 +19,6 @@
|
|
|
19
19
|
"Add a new property": "Gehitu jabe berri bat",
|
|
20
20
|
"Add a polygon to the current multi": "Gehitu poligono bat uneko multiari",
|
|
21
21
|
"Add image URL": "Gehitu irudiaren URLa",
|
|
22
|
-
"Add": "Gehitu",
|
|
23
22
|
"Advanced actions": "Ekintza aurreratuak",
|
|
24
23
|
"Advanced properties": "Propietate aurreratuak",
|
|
25
24
|
"All data and settings of the map": "Maparen datu eta ezarpen guztiak",
|
|
@@ -120,7 +119,6 @@
|
|
|
120
119
|
"Display the locate control": "Bistaratu lokalizazio kontrola",
|
|
121
120
|
"Display the measure control": "Bistaratu neurrien kontrola",
|
|
122
121
|
"Display the search control": "Bistaratu bilaketa-kontrola",
|
|
123
|
-
"Display the star map button": "Bistaratu gogoko mapen botoia",
|
|
124
122
|
"Display the tile layers control": "Bistaratu lauzen geruzaren kontrola",
|
|
125
123
|
"Display the zoom control": "Bistaratu zoom kontrola",
|
|
126
124
|
"Do you want to display a caption bar?": "Epigrafeen barra bistaratu nahi duzu?",
|
|
@@ -516,9 +514,19 @@
|
|
|
516
514
|
"show/hide all layers": "show/hide all layers",
|
|
517
515
|
"zoom to data extent": "zoom to data extent",
|
|
518
516
|
"download visible data": "download visible data",
|
|
519
|
-
"{connectedPeers} peer(s) currently connected to this map": "{connectedPeers} peer(s) currently connected to this map",
|
|
520
517
|
"Import helpers": "Import helpers",
|
|
521
518
|
"Import helpers will fill the URL field for you.": "Import helpers will fill the URL field for you.",
|
|
522
519
|
"Wikipedia": "Wikipedia",
|
|
523
|
-
"Save draft": "Save draft"
|
|
520
|
+
"Save draft": "Save draft",
|
|
521
|
+
"No data has been found for import": "No data has been found for import",
|
|
522
|
+
"Successfully imported {count} feature(s)": "Successfully imported {count} feature(s)",
|
|
523
|
+
"Disconnected": "Disconnected",
|
|
524
|
+
"You must be logged in": "You must be logged in",
|
|
525
|
+
"Created at {date}": "Created at {date}",
|
|
526
|
+
"Modified at {date}": "Modified at {date}",
|
|
527
|
+
"on hover": "on hover",
|
|
528
|
+
"Cannot load remote data for layer \"{layer}\" with url \"{url}\"": "Cannot load remote data for layer \"{layer}\" with url \"{url}\"",
|
|
529
|
+
"Cannot parse remote data for layer \"{layer}\" with url \"{url}\"": "Cannot parse remote data for layer \"{layer}\" with url \"{url}\"",
|
|
530
|
+
"Import failed: invalid data": "Import failed: invalid data",
|
|
531
|
+
"Anonymous": "Anonymous"
|
|
524
532
|
}
|
umap/static/umap/locale/fa_IR.js
CHANGED
|
@@ -19,7 +19,6 @@ const locale = {
|
|
|
19
19
|
"Add a new property": "افزودن ویژگی جدید",
|
|
20
20
|
"Add a polygon to the current multi": "یک چندضلعی به مولتی فعلی اضافه کنید",
|
|
21
21
|
"Add image URL": "نشانی تصویر را بدهید",
|
|
22
|
-
"Add": "افزودن",
|
|
23
22
|
"Advanced actions": "کنشهای پیشرفته",
|
|
24
23
|
"Advanced properties": "ویژگیهای پیشرفته",
|
|
25
24
|
"All data and settings of the map": "همهٔ دادهها و تنظیمات نقشه",
|
|
@@ -120,7 +119,6 @@ const locale = {
|
|
|
120
119
|
"Display the locate control": "نمایش دکمهٔ مکانیابی",
|
|
121
120
|
"Display the measure control": "نمایش دکمهٔ اندازهگیری",
|
|
122
121
|
"Display the search control": "نمایش دکمهٔ جستجو",
|
|
123
|
-
"Display the star map button": "نمایش دکمهٔ ستارهدارکردن نقشه",
|
|
124
122
|
"Display the tile layers control": "نمایش دکمهٔ لایههای کاشی",
|
|
125
123
|
"Display the zoom control": "نمایش دکمهٔ زوم",
|
|
126
124
|
"Do you want to display a caption bar?": "آیا نوار زیرنویس نشان داده شود؟",
|
|
@@ -516,11 +514,21 @@ const locale = {
|
|
|
516
514
|
"show/hide all layers": "show/hide all layers",
|
|
517
515
|
"zoom to data extent": "zoom to data extent",
|
|
518
516
|
"download visible data": "download visible data",
|
|
519
|
-
"{connectedPeers} peer(s) currently connected to this map": "{connectedPeers} peer(s) currently connected to this map",
|
|
520
517
|
"Import helpers": "Import helpers",
|
|
521
518
|
"Import helpers will fill the URL field for you.": "Import helpers will fill the URL field for you.",
|
|
522
519
|
"Wikipedia": "Wikipedia",
|
|
523
|
-
"Save draft": "Save draft"
|
|
520
|
+
"Save draft": "Save draft",
|
|
521
|
+
"No data has been found for import": "No data has been found for import",
|
|
522
|
+
"Successfully imported {count} feature(s)": "Successfully imported {count} feature(s)",
|
|
523
|
+
"Disconnected": "Disconnected",
|
|
524
|
+
"You must be logged in": "You must be logged in",
|
|
525
|
+
"Created at {date}": "Created at {date}",
|
|
526
|
+
"Modified at {date}": "Modified at {date}",
|
|
527
|
+
"on hover": "on hover",
|
|
528
|
+
"Cannot load remote data for layer \"{layer}\" with url \"{url}\"": "Cannot load remote data for layer \"{layer}\" with url \"{url}\"",
|
|
529
|
+
"Cannot parse remote data for layer \"{layer}\" with url \"{url}\"": "Cannot parse remote data for layer \"{layer}\" with url \"{url}\"",
|
|
530
|
+
"Import failed: invalid data": "Import failed: invalid data",
|
|
531
|
+
"Anonymous": "Anonymous"
|
|
524
532
|
}
|
|
525
533
|
L.registerLocale("fa_IR", locale)
|
|
526
534
|
L.setLocale("fa_IR")
|
|
@@ -19,7 +19,6 @@
|
|
|
19
19
|
"Add a new property": "افزودن ویژگی جدید",
|
|
20
20
|
"Add a polygon to the current multi": "یک چندضلعی به مولتی فعلی اضافه کنید",
|
|
21
21
|
"Add image URL": "نشانی تصویر را بدهید",
|
|
22
|
-
"Add": "افزودن",
|
|
23
22
|
"Advanced actions": "کنشهای پیشرفته",
|
|
24
23
|
"Advanced properties": "ویژگیهای پیشرفته",
|
|
25
24
|
"All data and settings of the map": "همهٔ دادهها و تنظیمات نقشه",
|
|
@@ -120,7 +119,6 @@
|
|
|
120
119
|
"Display the locate control": "نمایش دکمهٔ مکانیابی",
|
|
121
120
|
"Display the measure control": "نمایش دکمهٔ اندازهگیری",
|
|
122
121
|
"Display the search control": "نمایش دکمهٔ جستجو",
|
|
123
|
-
"Display the star map button": "نمایش دکمهٔ ستارهدارکردن نقشه",
|
|
124
122
|
"Display the tile layers control": "نمایش دکمهٔ لایههای کاشی",
|
|
125
123
|
"Display the zoom control": "نمایش دکمهٔ زوم",
|
|
126
124
|
"Do you want to display a caption bar?": "آیا نوار زیرنویس نشان داده شود؟",
|
|
@@ -516,9 +514,19 @@
|
|
|
516
514
|
"show/hide all layers": "show/hide all layers",
|
|
517
515
|
"zoom to data extent": "zoom to data extent",
|
|
518
516
|
"download visible data": "download visible data",
|
|
519
|
-
"{connectedPeers} peer(s) currently connected to this map": "{connectedPeers} peer(s) currently connected to this map",
|
|
520
517
|
"Import helpers": "Import helpers",
|
|
521
518
|
"Import helpers will fill the URL field for you.": "Import helpers will fill the URL field for you.",
|
|
522
519
|
"Wikipedia": "Wikipedia",
|
|
523
|
-
"Save draft": "Save draft"
|
|
520
|
+
"Save draft": "Save draft",
|
|
521
|
+
"No data has been found for import": "No data has been found for import",
|
|
522
|
+
"Successfully imported {count} feature(s)": "Successfully imported {count} feature(s)",
|
|
523
|
+
"Disconnected": "Disconnected",
|
|
524
|
+
"You must be logged in": "You must be logged in",
|
|
525
|
+
"Created at {date}": "Created at {date}",
|
|
526
|
+
"Modified at {date}": "Modified at {date}",
|
|
527
|
+
"on hover": "on hover",
|
|
528
|
+
"Cannot load remote data for layer \"{layer}\" with url \"{url}\"": "Cannot load remote data for layer \"{layer}\" with url \"{url}\"",
|
|
529
|
+
"Cannot parse remote data for layer \"{layer}\" with url \"{url}\"": "Cannot parse remote data for layer \"{layer}\" with url \"{url}\"",
|
|
530
|
+
"Import failed: invalid data": "Import failed: invalid data",
|
|
531
|
+
"Anonymous": "Anonymous"
|
|
524
532
|
}
|
umap/static/umap/locale/fr.js
CHANGED
|
@@ -19,7 +19,6 @@ const locale = {
|
|
|
19
19
|
"Add a new property": "Ajouter une propriété",
|
|
20
20
|
"Add a polygon to the current multi": "Ajouter un polygon au groupe courant",
|
|
21
21
|
"Add image URL": "URL d'une image",
|
|
22
|
-
"Add": "Ajouter",
|
|
23
22
|
"Advanced actions": "Actions avancées",
|
|
24
23
|
"Advanced properties": "Propriétés avancées",
|
|
25
24
|
"All data and settings of the map": "Toutes les données et les propriétés de la carte",
|
|
@@ -120,7 +119,6 @@ const locale = {
|
|
|
120
119
|
"Display the locate control": "Afficher le bouton de localisation",
|
|
121
120
|
"Display the measure control": "Afficher le bouton de mesures",
|
|
122
121
|
"Display the search control": "Afficher le bouton de recherche",
|
|
123
|
-
"Display the star map button": "Afficher le bouton pour mettre une carte en favori",
|
|
124
122
|
"Display the tile layers control": "Afficher le bouton permettant de changer le fond de carte",
|
|
125
123
|
"Display the zoom control": "Afficher les boutons de zoom",
|
|
126
124
|
"Do you want to display a caption bar?": "Voulez-vous afficher une barre de légende",
|
|
@@ -226,7 +224,7 @@ const locale = {
|
|
|
226
224
|
"Map has been attached to your account": "La carte est maintenant liée à votre compte",
|
|
227
225
|
"Map has been saved!": "La carte a été sauvegardée !",
|
|
228
226
|
"Map has been starred": "La carte a été ajoutée aux favoris",
|
|
229
|
-
"Map has been unstarred": "La carte a été
|
|
227
|
+
"Map has been unstarred": "La carte a été retirée des favoris",
|
|
230
228
|
"Map user content has been published under licence": "Les contenus sur la carte ont été publiés avec la licence",
|
|
231
229
|
"Map's editors": "Éditeurs de la carte",
|
|
232
230
|
"Map's owner": "Propriétaire de la carte",
|
|
@@ -516,14 +514,21 @@ const locale = {
|
|
|
516
514
|
"show/hide all layers": "montrer/masquer les calques",
|
|
517
515
|
"zoom to data extent": "zoomer sur les données",
|
|
518
516
|
"download visible data": "télécharger les données affichées",
|
|
519
|
-
"{connectedPeers} peer(s) currently connected to this map": "{connectedPeers} personne(s) actuellement connectée(s) à cette carte",
|
|
520
517
|
"Import helpers": "Assistants d'import",
|
|
521
518
|
"Import helpers will fill the URL field for you.": "Les assistants d'import vont renseigner le champ URL pour vous.",
|
|
522
519
|
"Wikipedia": "Wikipedia",
|
|
523
520
|
"Save draft": "Enregistrer le brouillon",
|
|
524
521
|
"No data has been found for import": "Aucunes données à importer",
|
|
525
522
|
"Successfully imported {count} feature(s)": "{count} élément(s) ajouté(s) à la carte",
|
|
526
|
-
"Disconnected": "Déconnecté"
|
|
523
|
+
"Disconnected": "Déconnecté",
|
|
524
|
+
"You must be logged in": "Authentification requise",
|
|
525
|
+
"Created at {date}": "Créée le",
|
|
526
|
+
"Modified at {date}": "Modifiée le",
|
|
527
|
+
"on hover": "au survol",
|
|
528
|
+
"Cannot load remote data for layer \"{layer}\" with url \"{url}\"": "Impossible de charger les données du calque \"{layer}\" à partir de l'URL \"{url}\"",
|
|
529
|
+
"Cannot parse remote data for layer \"{layer}\" with url \"{url}\"": "Impossible de lire les données du calque \"{layer}\" à partir de l'URL \"{url}\"",
|
|
530
|
+
"Import failed: invalid data": "Échec de l'import: les données sont invalides",
|
|
531
|
+
"Anonymous": "Anonyme"
|
|
527
532
|
}
|
|
528
533
|
L.registerLocale("fr", locale)
|
|
529
534
|
L.setLocale("fr")
|
umap/static/umap/locale/fr.json
CHANGED
|
@@ -19,7 +19,6 @@
|
|
|
19
19
|
"Add a new property": "Ajouter une propriété",
|
|
20
20
|
"Add a polygon to the current multi": "Ajouter un polygon au groupe courant",
|
|
21
21
|
"Add image URL": "URL d'une image",
|
|
22
|
-
"Add": "Ajouter",
|
|
23
22
|
"Advanced actions": "Actions avancées",
|
|
24
23
|
"Advanced properties": "Propriétés avancées",
|
|
25
24
|
"All data and settings of the map": "Toutes les données et les propriétés de la carte",
|
|
@@ -120,7 +119,6 @@
|
|
|
120
119
|
"Display the locate control": "Afficher le bouton de localisation",
|
|
121
120
|
"Display the measure control": "Afficher le bouton de mesures",
|
|
122
121
|
"Display the search control": "Afficher le bouton de recherche",
|
|
123
|
-
"Display the star map button": "Afficher le bouton pour mettre une carte en favori",
|
|
124
122
|
"Display the tile layers control": "Afficher le bouton permettant de changer le fond de carte",
|
|
125
123
|
"Display the zoom control": "Afficher les boutons de zoom",
|
|
126
124
|
"Do you want to display a caption bar?": "Voulez-vous afficher une barre de légende",
|
|
@@ -226,7 +224,7 @@
|
|
|
226
224
|
"Map has been attached to your account": "La carte est maintenant liée à votre compte",
|
|
227
225
|
"Map has been saved!": "La carte a été sauvegardée !",
|
|
228
226
|
"Map has been starred": "La carte a été ajoutée aux favoris",
|
|
229
|
-
"Map has been unstarred": "La carte a été
|
|
227
|
+
"Map has been unstarred": "La carte a été retirée des favoris",
|
|
230
228
|
"Map user content has been published under licence": "Les contenus sur la carte ont été publiés avec la licence",
|
|
231
229
|
"Map's editors": "Éditeurs de la carte",
|
|
232
230
|
"Map's owner": "Propriétaire de la carte",
|
|
@@ -516,12 +514,19 @@
|
|
|
516
514
|
"show/hide all layers": "montrer/masquer les calques",
|
|
517
515
|
"zoom to data extent": "zoomer sur les données",
|
|
518
516
|
"download visible data": "télécharger les données affichées",
|
|
519
|
-
"{connectedPeers} peer(s) currently connected to this map": "{connectedPeers} personne(s) actuellement connectée(s) à cette carte",
|
|
520
517
|
"Import helpers": "Assistants d'import",
|
|
521
518
|
"Import helpers will fill the URL field for you.": "Les assistants d'import vont renseigner le champ URL pour vous.",
|
|
522
519
|
"Wikipedia": "Wikipedia",
|
|
523
520
|
"Save draft": "Enregistrer le brouillon",
|
|
524
521
|
"No data has been found for import": "Aucunes données à importer",
|
|
525
522
|
"Successfully imported {count} feature(s)": "{count} élément(s) ajouté(s) à la carte",
|
|
526
|
-
"Disconnected": "Déconnecté"
|
|
523
|
+
"Disconnected": "Déconnecté",
|
|
524
|
+
"You must be logged in": "Authentification requise",
|
|
525
|
+
"Created at {date}": "Créée le",
|
|
526
|
+
"Modified at {date}": "Modifiée le",
|
|
527
|
+
"on hover": "au survol",
|
|
528
|
+
"Cannot load remote data for layer \"{layer}\" with url \"{url}\"": "Impossible de charger les données du calque \"{layer}\" à partir de l'URL \"{url}\"",
|
|
529
|
+
"Cannot parse remote data for layer \"{layer}\" with url \"{url}\"": "Impossible de lire les données du calque \"{layer}\" à partir de l'URL \"{url}\"",
|
|
530
|
+
"Import failed: invalid data": "Échec de l'import: les données sont invalides",
|
|
531
|
+
"Anonymous": "Anonyme"
|
|
527
532
|
}
|