umap-project 3.3.6__py3-none-any.whl → 3.4.0b1__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/context_processors.py +4 -1
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +43 -33
- umap/locale/da/LC_MESSAGES/django.mo +0 -0
- umap/locale/da/LC_MESSAGES/django.po +43 -33
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +35 -29
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/el/LC_MESSAGES/django.po +35 -29
- umap/locale/en/LC_MESSAGES/django.po +34 -28
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +43 -33
- umap/locale/et/LC_MESSAGES/django.mo +0 -0
- umap/locale/et/LC_MESSAGES/django.po +58 -54
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.po +43 -33
- umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- umap/locale/fa_IR/LC_MESSAGES/django.po +43 -33
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +36 -30
- umap/locale/gl/LC_MESSAGES/django.mo +0 -0
- umap/locale/gl/LC_MESSAGES/django.po +43 -33
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +35 -29
- umap/locale/is/LC_MESSAGES/django.mo +0 -0
- umap/locale/is/LC_MESSAGES/django.po +43 -33
- umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap/locale/it/LC_MESSAGES/django.po +43 -33
- umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- umap/locale/nl/LC_MESSAGES/django.po +35 -29
- umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- umap/locale/pl/LC_MESSAGES/django.po +43 -33
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +43 -33
- umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
- umap/locale/th_TH/LC_MESSAGES/django.po +310 -109
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +80 -70
- umap/management/commands/switch_user.py +2 -2
- umap/static/umap/base.css +89 -32
- umap/static/umap/content.css +129 -33
- umap/static/umap/css/bar.css +82 -20
- umap/static/umap/css/browser.css +163 -0
- umap/static/umap/css/contextmenu.css +15 -0
- umap/static/umap/css/dialog.css +36 -16
- umap/static/umap/css/form.css +122 -32
- umap/static/umap/css/icon.css +46 -3
- umap/static/umap/css/panel.css +7 -3
- umap/static/umap/css/popup.css +34 -8
- umap/static/umap/css/tooltip.css +8 -4
- umap/static/umap/img/16-white.svg +26 -8
- umap/static/umap/img/16.svg +1 -1
- umap/static/umap/img/source/16-white.svg +36 -18
- umap/static/umap/img/source/16.svg +1 -1
- umap/static/umap/js/components/alerts/alert.css +69 -31
- umap/static/umap/js/components/alerts/alert.js +20 -2
- umap/static/umap/js/modules/browser.js +63 -55
- umap/static/umap/js/modules/caption.js +10 -7
- umap/static/umap/js/modules/data/features.js +82 -59
- umap/static/umap/js/modules/data/layer.js +56 -157
- umap/static/umap/js/modules/domutils.js +109 -0
- umap/static/umap/js/modules/filters.js +807 -0
- umap/static/umap/js/modules/form/builder.js +8 -5
- umap/static/umap/js/modules/form/fields.js +110 -220
- umap/static/umap/js/modules/formatter.js +24 -1
- umap/static/umap/js/modules/help.js +3 -2
- umap/static/umap/js/modules/importers/opendata.js +5 -0
- umap/static/umap/js/modules/importers/openrouteservice.js +6 -1
- umap/static/umap/js/modules/managers.js +265 -1
- umap/static/umap/js/modules/permissions.js +39 -31
- umap/static/umap/js/modules/rendering/controls.js +7 -7
- umap/static/umap/js/modules/rendering/icon.js +3 -8
- umap/static/umap/js/modules/rendering/layers/classified.js +17 -10
- umap/static/umap/js/modules/rendering/layers/cluster.js +5 -3
- umap/static/umap/js/modules/rendering/template.js +44 -8
- umap/static/umap/js/modules/rendering/ui.js +29 -23
- umap/static/umap/js/modules/rules.js +4 -3
- umap/static/umap/js/modules/schema.js +3 -6
- umap/static/umap/js/modules/share.js +4 -3
- umap/static/umap/js/modules/tableeditor.js +50 -38
- umap/static/umap/js/modules/templates.js +2 -3
- umap/static/umap/js/modules/ui/bar.js +42 -18
- umap/static/umap/js/modules/ui/dialog.js +33 -31
- umap/static/umap/js/modules/ui/panel.js +21 -7
- umap/static/umap/js/modules/ui/tooltip.js +6 -5
- umap/static/umap/js/modules/umap.js +149 -51
- umap/static/umap/js/modules/utils.js +23 -1
- umap/static/umap/js/umap.core.js +1 -110
- umap/static/umap/locale/am_ET.js +40 -14
- umap/static/umap/locale/am_ET.json +40 -14
- umap/static/umap/locale/ar.js +40 -14
- umap/static/umap/locale/ar.json +40 -14
- umap/static/umap/locale/ast.js +40 -14
- umap/static/umap/locale/ast.json +40 -14
- umap/static/umap/locale/bg.js +40 -14
- umap/static/umap/locale/bg.json +40 -14
- umap/static/umap/locale/br.js +47 -21
- umap/static/umap/locale/br.json +47 -21
- umap/static/umap/locale/ca.js +40 -14
- umap/static/umap/locale/ca.json +40 -14
- umap/static/umap/locale/cs_CZ.js +40 -14
- umap/static/umap/locale/cs_CZ.json +40 -14
- umap/static/umap/locale/da.js +40 -14
- umap/static/umap/locale/da.json +40 -14
- umap/static/umap/locale/de.js +39 -13
- umap/static/umap/locale/de.json +39 -13
- umap/static/umap/locale/el.js +40 -14
- umap/static/umap/locale/el.json +40 -14
- umap/static/umap/locale/en.js +39 -13
- umap/static/umap/locale/en.json +39 -13
- umap/static/umap/locale/en_US.json +40 -14
- umap/static/umap/locale/es.js +40 -14
- umap/static/umap/locale/es.json +40 -14
- umap/static/umap/locale/et.js +79 -53
- umap/static/umap/locale/et.json +79 -53
- umap/static/umap/locale/eu.js +72 -46
- umap/static/umap/locale/eu.json +72 -46
- umap/static/umap/locale/fa_IR.js +40 -14
- umap/static/umap/locale/fa_IR.json +40 -14
- umap/static/umap/locale/fi.js +40 -14
- umap/static/umap/locale/fi.json +40 -14
- umap/static/umap/locale/fr.js +39 -13
- umap/static/umap/locale/fr.json +39 -13
- umap/static/umap/locale/gl.js +40 -14
- umap/static/umap/locale/gl.json +40 -14
- umap/static/umap/locale/he.js +40 -14
- umap/static/umap/locale/he.json +40 -14
- umap/static/umap/locale/hr.js +40 -14
- umap/static/umap/locale/hr.json +40 -14
- umap/static/umap/locale/hu.js +40 -14
- umap/static/umap/locale/hu.json +40 -14
- umap/static/umap/locale/id.js +40 -14
- umap/static/umap/locale/id.json +40 -14
- umap/static/umap/locale/is.js +40 -14
- umap/static/umap/locale/is.json +40 -14
- umap/static/umap/locale/it.js +40 -14
- umap/static/umap/locale/it.json +40 -14
- umap/static/umap/locale/ja.js +40 -14
- umap/static/umap/locale/ja.json +40 -14
- umap/static/umap/locale/ko.js +40 -14
- umap/static/umap/locale/ko.json +40 -14
- umap/static/umap/locale/lt.js +40 -14
- umap/static/umap/locale/lt.json +40 -14
- umap/static/umap/locale/ms.js +40 -14
- umap/static/umap/locale/ms.json +40 -14
- umap/static/umap/locale/nl.js +40 -14
- umap/static/umap/locale/nl.json +40 -14
- umap/static/umap/locale/no.js +40 -14
- umap/static/umap/locale/no.json +40 -14
- umap/static/umap/locale/pl.js +40 -14
- umap/static/umap/locale/pl.json +40 -14
- umap/static/umap/locale/pl_PL.json +40 -14
- umap/static/umap/locale/pt.js +40 -14
- umap/static/umap/locale/pt.json +40 -14
- umap/static/umap/locale/pt_BR.js +40 -14
- umap/static/umap/locale/pt_BR.json +40 -14
- umap/static/umap/locale/pt_PT.js +40 -14
- umap/static/umap/locale/pt_PT.json +40 -14
- umap/static/umap/locale/ro.js +40 -14
- umap/static/umap/locale/ro.json +40 -14
- umap/static/umap/locale/ru.js +40 -14
- umap/static/umap/locale/ru.json +40 -14
- umap/static/umap/locale/sk_SK.js +40 -14
- umap/static/umap/locale/sk_SK.json +40 -14
- umap/static/umap/locale/sl.js +40 -14
- umap/static/umap/locale/sl.json +40 -14
- umap/static/umap/locale/sr.js +40 -14
- umap/static/umap/locale/sr.json +40 -14
- umap/static/umap/locale/sv.js +40 -14
- umap/static/umap/locale/sv.json +40 -14
- umap/static/umap/locale/th_TH.js +40 -14
- umap/static/umap/locale/th_TH.json +40 -14
- umap/static/umap/locale/tr.js +40 -14
- umap/static/umap/locale/tr.json +40 -14
- umap/static/umap/locale/uk_UA.js +40 -14
- umap/static/umap/locale/uk_UA.json +40 -14
- umap/static/umap/locale/vi.js +40 -14
- umap/static/umap/locale/vi.json +40 -14
- umap/static/umap/locale/vi_VN.json +40 -14
- umap/static/umap/locale/zh.js +40 -14
- umap/static/umap/locale/zh.json +40 -14
- umap/static/umap/locale/zh_CN.json +40 -14
- umap/static/umap/locale/zh_TW.Big5.json +40 -14
- umap/static/umap/locale/zh_TW.js +39 -13
- umap/static/umap/locale/zh_TW.json +39 -13
- umap/static/umap/map.css +60 -223
- umap/static/umap/unittests/utils.js +18 -0
- umap/static/umap/vars.css +23 -5
- umap/templates/umap/components/alerts/alert.html +32 -29
- umap/templates/umap/css.html +2 -1
- umap/templates/umap/login_popup_end.html +18 -9
- umap/templates/umap/user_map_table.html +7 -2
- umap/tests/integration/conftest.py +2 -6
- umap/tests/integration/test_anonymous_owned_map.py +89 -36
- umap/tests/integration/test_basics.py +25 -1
- umap/tests/integration/test_browser.py +37 -0
- umap/tests/integration/test_draw_polygon.py +2 -0
- umap/tests/integration/test_edit_marker.py +1 -1
- umap/tests/integration/test_export_map.py +19 -0
- umap/tests/integration/test_fields.py +522 -0
- umap/tests/integration/test_filters.py +617 -0
- umap/tests/integration/test_import.py +15 -42
- umap/tests/integration/test_remote_data.py +60 -4
- umap/tests/integration/test_share.py +4 -4
- umap/tests/integration/test_tableeditor.py +31 -7
- umap/tests/integration/test_websocket_sync.py +3 -1
- umap/tests/test_dashboard.py +10 -0
- umap/tests/test_utils.py +15 -1
- umap/urls.py +1 -0
- umap/utils.py +6 -0
- umap/views.py +5 -0
- {umap_project-3.3.6.dist-info → umap_project-3.4.0b1.dist-info}/METADATA +12 -12
- {umap_project-3.3.6.dist-info → umap_project-3.4.0b1.dist-info}/RECORD +217 -214
- umap/static/umap/js/modules/facets.js +0 -164
- umap/tests/integration/test_facets_browser.py +0 -279
- {umap_project-3.3.6.dist-info → umap_project-3.4.0b1.dist-info}/WHEEL +0 -0
- {umap_project-3.3.6.dist-info → umap_project-3.4.0b1.dist-info}/entry_points.txt +0 -0
- {umap_project-3.3.6.dist-info → umap_project-3.4.0b1.dist-info}/licenses/LICENSE +0 -0
umap/static/umap/locale/fr.js
CHANGED
|
@@ -267,7 +267,6 @@ const locale = {
|
|
|
267
267
|
"Permanent credits": "Crédits permanents",
|
|
268
268
|
"Please be sure the licence is compliant with your use.": "Pensez à vérifier que la licence de ces données vous autorise à les utiliser.",
|
|
269
269
|
"Please choose a format": "Merci de choisir un format",
|
|
270
|
-
"Please enter the name of the property": "Merci d'entrer le nom de la propriété",
|
|
271
270
|
"Please save the map first": "Vous devez d'abord enregistrer la carte",
|
|
272
271
|
"Popup (large)": "Popup (grande)",
|
|
273
272
|
"Popup content style": "Gabarit prédéfini de popup",
|
|
@@ -397,20 +396,16 @@ const locale = {
|
|
|
397
396
|
"Max": "Max",
|
|
398
397
|
"From": "De",
|
|
399
398
|
"Until": "À",
|
|
400
|
-
"Example: key1,key2|Label 2,key3|Label 3|checkbox": "Exemple : cle1,cle2|Label 2,Label 3|checkbox",
|
|
401
399
|
"Edit in OpenStreetMap": "Modifier dans OpenStreetMap",
|
|
402
400
|
"Back to layers": "Voir les calques",
|
|
403
401
|
"Filters": "Filtres",
|
|
404
402
|
"Comma separated list of properties to use when filtering features by text input": "Liste de propriétés utilisées lors de la recherche texte d'éléments de la carte (séparées par des virgules)",
|
|
405
|
-
"Comma separated list of properties to use for filters (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.": "Liste de propriétés séparées par des virgules, à utiliser pour le calcul des filtres par catégories (ex. : macle,autrecle). Il est possible de préciser le libellé de la facette après un | (ex. : macle|Ma Clé,autrecle|Mon Autre Clé). Il est aussi possible de définir le type de champ utilisé, en utilisant un autre | (ex. : macle|Ma clé|checkbox,autrecle|Autre clé|datetime). Les types pris en charge sont : checkbox (par défaut), radio, number, date et datetime.",
|
|
406
403
|
"Search keys": "Clés pour la recherche",
|
|
407
|
-
"Filters keys": "Clés pour les filtres",
|
|
408
404
|
"Filter data": "Filtrer les données",
|
|
409
405
|
"Search map features…": "Chercher des éléments de la carte",
|
|
410
406
|
"Reset all": "Tout réinitialiser",
|
|
411
407
|
"Open browser": "Explorateur",
|
|
412
408
|
"Open caption": "Légende",
|
|
413
|
-
"Your map has been created with an anonymous account!": "La carte a été créée avec un compte anonyme !",
|
|
414
409
|
"Real-time collaboration": "Collaboration temps réel",
|
|
415
410
|
"Cannot parse data": "Données invalides",
|
|
416
411
|
"Start typing...": "Taper…",
|
|
@@ -466,10 +461,6 @@ const locale = {
|
|
|
466
461
|
"Categories": "Catégories",
|
|
467
462
|
"Comma separated list of categories.": "Liste de catégories séparées par une virgule.",
|
|
468
463
|
"Categories mode": "Mode",
|
|
469
|
-
"Remove filter for this column": "Supprimer le filtre pour cette colonne",
|
|
470
|
-
"Add filter for this column": "Ajouter un filtre pour cette colonne",
|
|
471
|
-
"Rename this column": "Renommer cette colonne",
|
|
472
|
-
"Delete this column": "Supprimer cette colonne",
|
|
473
464
|
"Name “{name}” should not contain a dot.": "Le nom «{name}» ne doit pas contenir de point.",
|
|
474
465
|
"This name already exists: “{name}”": "Ce nom existe déjà: «{name}».",
|
|
475
466
|
"Delete selected rows": "Supprimer les lignes sélectionnées",
|
|
@@ -571,11 +562,8 @@ const locale = {
|
|
|
571
562
|
"Please choose an instance first.": "Merci de choisir un portail.",
|
|
572
563
|
"No geo column found: must be either `lat(itude)` and `lon(gitude)` or `geom(etry)`.": "Aucune colonne géométrique trouvée: il faut soit `lat(itude)` et `lon(gitude)` soit `geom(etry)`.",
|
|
573
564
|
"Add a new field": "Ajouter un champ",
|
|
574
|
-
"Are you sure you want to delete this field on all the features?": "Êtes-vous sûr de vouloir supprimer ce champ sur tous les éléments ?",
|
|
575
|
-
"Please enter the new name of this field": "Merci de renseigner le nouveau nom du champ",
|
|
576
565
|
"Cannot process MultiPoint": "Impossible d'importer un MultiPoint",
|
|
577
566
|
"Manage Fields": "Gérer les champs",
|
|
578
|
-
"Rename this field": "Renommer ce champ",
|
|
579
567
|
"Delete this field": "Supprimer ce champ",
|
|
580
568
|
"Double click to edit the name": "Double-cliquer pour modifier le nom",
|
|
581
569
|
"Print map": "Imprimer la carte",
|
|
@@ -615,7 +603,45 @@ const locale = {
|
|
|
615
603
|
"Altitude:": "Altitude :",
|
|
616
604
|
"Right-click to edit": "Clic droit pour éditer",
|
|
617
605
|
"Draw along routes": "Dessiner en suivant les routes",
|
|
618
|
-
"Skipping invalid geometry": "Géométrie invalide ignorée"
|
|
606
|
+
"Skipping invalid geometry": "Géométrie invalide ignorée",
|
|
607
|
+
"Add filter": "Nouveau filtre",
|
|
608
|
+
"Min/Max": "Min/Max",
|
|
609
|
+
"Multiple choices": "Choix multiples",
|
|
610
|
+
"Exclusive choice": "Choix unique",
|
|
611
|
+
"Yes/No": "Oui/Non",
|
|
612
|
+
"Add a field prior to create a filter.": "Ajouter un champ pour pouvoir créer un filtre.",
|
|
613
|
+
"Edit this filter": "Modifier ce filtre",
|
|
614
|
+
"Remove this filter": "Supprimer ce filtre",
|
|
615
|
+
"Apply filter to": "Portée du filtre",
|
|
616
|
+
"Filter on": "Filtrer sur",
|
|
617
|
+
"Human readable name of the filter": "Libellé du filtre",
|
|
618
|
+
"Widget for the filter": "Type du filtre",
|
|
619
|
+
"Edit filter": "Modifier le filtre",
|
|
620
|
+
"Edit this field": "Modifier ce champ",
|
|
621
|
+
"all layers": "tous les calques",
|
|
622
|
+
"single layer": "calque seul",
|
|
623
|
+
"unset": "non défini",
|
|
624
|
+
"Filters will be displayed in the data browser to ease data selection.": "Les filtres s'affichent dans l'explorateur de données pour faciliter leur sélection.",
|
|
625
|
+
"[key=\"value\"][key2=\"value2\"] (eg. [boundary=\"educational\"][name=\"Académie de Lyon\"])": "[key=\"value\"][key2=\"value2\"] (ex. [boundary=\"educational\"][name=\"Académie de Lyon\"])",
|
|
626
|
+
"Field Name": "Nom du champ",
|
|
627
|
+
"Field Type": "Type du champ",
|
|
628
|
+
"Manage field": "Gestion du champ",
|
|
629
|
+
"Add filter for this field": "Ajouter un filtre sur ce champ",
|
|
630
|
+
"Name cannot be empty.": "Le nom ne peut pas être vide.",
|
|
631
|
+
"Are you sure you want to delete this field on all the data?": "Êtes-vous sûr de vouloir supprimer ce champ et toutes les données associées ?",
|
|
632
|
+
"Anonymous map": "Carte anonyme",
|
|
633
|
+
"Edit filter for this field": "Modifier le filtre lié à ce champ",
|
|
634
|
+
"Fields, filters and keys": "Champs, filtres et clés",
|
|
635
|
+
"Hey, you created a map without an account!": "Hé, vous avez créé une carte sans être connecté !",
|
|
636
|
+
"This map is anonymous, do you want to attach it to your account?": "Cette carte est anonyme, voulez-vous la relier à votre compte ?",
|
|
637
|
+
"The map has been upgraded to latest version, please save it.": "La carte a été mise à jour, merci de l'enregistrer.",
|
|
638
|
+
"Elevation has been added!": "Les données de dénivelé ont bien été ajoutées !",
|
|
639
|
+
"Mapillary": "Mapillary",
|
|
640
|
+
"Wikidata": "Wikidata",
|
|
641
|
+
"Wikipedia contributors": "Contributeurs Wikipédia",
|
|
642
|
+
"See on Wikipedia": "Voir sur Wikipédia",
|
|
643
|
+
"Anonymous map: update who can see and edit it": "Carte anonyme: gérer qui peut la voir et la modifier",
|
|
644
|
+
"Login": "Connexion"
|
|
619
645
|
}
|
|
620
646
|
L.registerLocale("fr", locale)
|
|
621
647
|
L.setLocale("fr")
|
umap/static/umap/locale/fr.json
CHANGED
|
@@ -267,7 +267,6 @@
|
|
|
267
267
|
"Permanent credits": "Crédits permanents",
|
|
268
268
|
"Please be sure the licence is compliant with your use.": "Pensez à vérifier que la licence de ces données vous autorise à les utiliser.",
|
|
269
269
|
"Please choose a format": "Merci de choisir un format",
|
|
270
|
-
"Please enter the name of the property": "Merci d'entrer le nom de la propriété",
|
|
271
270
|
"Please save the map first": "Vous devez d'abord enregistrer la carte",
|
|
272
271
|
"Popup (large)": "Popup (grande)",
|
|
273
272
|
"Popup content style": "Gabarit prédéfini de popup",
|
|
@@ -397,20 +396,16 @@
|
|
|
397
396
|
"Max": "Max",
|
|
398
397
|
"From": "De",
|
|
399
398
|
"Until": "À",
|
|
400
|
-
"Example: key1,key2|Label 2,key3|Label 3|checkbox": "Exemple : cle1,cle2|Label 2,Label 3|checkbox",
|
|
401
399
|
"Edit in OpenStreetMap": "Modifier dans OpenStreetMap",
|
|
402
400
|
"Back to layers": "Voir les calques",
|
|
403
401
|
"Filters": "Filtres",
|
|
404
402
|
"Comma separated list of properties to use when filtering features by text input": "Liste de propriétés utilisées lors de la recherche texte d'éléments de la carte (séparées par des virgules)",
|
|
405
|
-
"Comma separated list of properties to use for filters (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.": "Liste de propriétés séparées par des virgules, à utiliser pour le calcul des filtres par catégories (ex. : macle,autrecle). Il est possible de préciser le libellé de la facette après un | (ex. : macle|Ma Clé,autrecle|Mon Autre Clé). Il est aussi possible de définir le type de champ utilisé, en utilisant un autre | (ex. : macle|Ma clé|checkbox,autrecle|Autre clé|datetime). Les types pris en charge sont : checkbox (par défaut), radio, number, date et datetime.",
|
|
406
403
|
"Search keys": "Clés pour la recherche",
|
|
407
|
-
"Filters keys": "Clés pour les filtres",
|
|
408
404
|
"Filter data": "Filtrer les données",
|
|
409
405
|
"Search map features…": "Chercher des éléments de la carte",
|
|
410
406
|
"Reset all": "Tout réinitialiser",
|
|
411
407
|
"Open browser": "Explorateur",
|
|
412
408
|
"Open caption": "Légende",
|
|
413
|
-
"Your map has been created with an anonymous account!": "La carte a été créée avec un compte anonyme !",
|
|
414
409
|
"Real-time collaboration": "Collaboration temps réel",
|
|
415
410
|
"Cannot parse data": "Données invalides",
|
|
416
411
|
"Start typing...": "Taper…",
|
|
@@ -466,10 +461,6 @@
|
|
|
466
461
|
"Categories": "Catégories",
|
|
467
462
|
"Comma separated list of categories.": "Liste de catégories séparées par une virgule.",
|
|
468
463
|
"Categories mode": "Mode",
|
|
469
|
-
"Remove filter for this column": "Supprimer le filtre pour cette colonne",
|
|
470
|
-
"Add filter for this column": "Ajouter un filtre pour cette colonne",
|
|
471
|
-
"Rename this column": "Renommer cette colonne",
|
|
472
|
-
"Delete this column": "Supprimer cette colonne",
|
|
473
464
|
"Name “{name}” should not contain a dot.": "Le nom «{name}» ne doit pas contenir de point.",
|
|
474
465
|
"This name already exists: “{name}”": "Ce nom existe déjà: «{name}».",
|
|
475
466
|
"Delete selected rows": "Supprimer les lignes sélectionnées",
|
|
@@ -571,11 +562,8 @@
|
|
|
571
562
|
"Please choose an instance first.": "Merci de choisir un portail.",
|
|
572
563
|
"No geo column found: must be either `lat(itude)` and `lon(gitude)` or `geom(etry)`.": "Aucune colonne géométrique trouvée: il faut soit `lat(itude)` et `lon(gitude)` soit `geom(etry)`.",
|
|
573
564
|
"Add a new field": "Ajouter un champ",
|
|
574
|
-
"Are you sure you want to delete this field on all the features?": "Êtes-vous sûr de vouloir supprimer ce champ sur tous les éléments ?",
|
|
575
|
-
"Please enter the new name of this field": "Merci de renseigner le nouveau nom du champ",
|
|
576
565
|
"Cannot process MultiPoint": "Impossible d'importer un MultiPoint",
|
|
577
566
|
"Manage Fields": "Gérer les champs",
|
|
578
|
-
"Rename this field": "Renommer ce champ",
|
|
579
567
|
"Delete this field": "Supprimer ce champ",
|
|
580
568
|
"Double click to edit the name": "Double-cliquer pour modifier le nom",
|
|
581
569
|
"Print map": "Imprimer la carte",
|
|
@@ -615,5 +603,43 @@
|
|
|
615
603
|
"Altitude:": "Altitude :",
|
|
616
604
|
"Right-click to edit": "Clic droit pour éditer",
|
|
617
605
|
"Draw along routes": "Dessiner en suivant les routes",
|
|
618
|
-
"Skipping invalid geometry": "Géométrie invalide ignorée"
|
|
606
|
+
"Skipping invalid geometry": "Géométrie invalide ignorée",
|
|
607
|
+
"Add filter": "Nouveau filtre",
|
|
608
|
+
"Min/Max": "Min/Max",
|
|
609
|
+
"Multiple choices": "Choix multiples",
|
|
610
|
+
"Exclusive choice": "Choix unique",
|
|
611
|
+
"Yes/No": "Oui/Non",
|
|
612
|
+
"Add a field prior to create a filter.": "Ajouter un champ pour pouvoir créer un filtre.",
|
|
613
|
+
"Edit this filter": "Modifier ce filtre",
|
|
614
|
+
"Remove this filter": "Supprimer ce filtre",
|
|
615
|
+
"Apply filter to": "Portée du filtre",
|
|
616
|
+
"Filter on": "Filtrer sur",
|
|
617
|
+
"Human readable name of the filter": "Libellé du filtre",
|
|
618
|
+
"Widget for the filter": "Type du filtre",
|
|
619
|
+
"Edit filter": "Modifier le filtre",
|
|
620
|
+
"Edit this field": "Modifier ce champ",
|
|
621
|
+
"all layers": "tous les calques",
|
|
622
|
+
"single layer": "calque seul",
|
|
623
|
+
"unset": "non défini",
|
|
624
|
+
"Filters will be displayed in the data browser to ease data selection.": "Les filtres s'affichent dans l'explorateur de données pour faciliter leur sélection.",
|
|
625
|
+
"[key=\"value\"][key2=\"value2\"] (eg. [boundary=\"educational\"][name=\"Académie de Lyon\"])": "[key=\"value\"][key2=\"value2\"] (ex. [boundary=\"educational\"][name=\"Académie de Lyon\"])",
|
|
626
|
+
"Field Name": "Nom du champ",
|
|
627
|
+
"Field Type": "Type du champ",
|
|
628
|
+
"Manage field": "Gestion du champ",
|
|
629
|
+
"Add filter for this field": "Ajouter un filtre sur ce champ",
|
|
630
|
+
"Name cannot be empty.": "Le nom ne peut pas être vide.",
|
|
631
|
+
"Are you sure you want to delete this field on all the data?": "Êtes-vous sûr de vouloir supprimer ce champ et toutes les données associées ?",
|
|
632
|
+
"Anonymous map": "Carte anonyme",
|
|
633
|
+
"Edit filter for this field": "Modifier le filtre lié à ce champ",
|
|
634
|
+
"Fields, filters and keys": "Champs, filtres et clés",
|
|
635
|
+
"Hey, you created a map without an account!": "Hé, vous avez créé une carte sans être connecté !",
|
|
636
|
+
"This map is anonymous, do you want to attach it to your account?": "Cette carte est anonyme, voulez-vous la relier à votre compte ?",
|
|
637
|
+
"The map has been upgraded to latest version, please save it.": "La carte a été mise à jour, merci de l'enregistrer.",
|
|
638
|
+
"Elevation has been added!": "Les données de dénivelé ont bien été ajoutées !",
|
|
639
|
+
"Mapillary": "Mapillary",
|
|
640
|
+
"Wikidata": "Wikidata",
|
|
641
|
+
"Wikipedia contributors": "Contributeurs Wikipédia",
|
|
642
|
+
"See on Wikipedia": "Voir sur Wikipédia",
|
|
643
|
+
"Anonymous map: update who can see and edit it": "Carte anonyme: gérer qui peut la voir et la modifier",
|
|
644
|
+
"Login": "Connexion"
|
|
619
645
|
}
|
umap/static/umap/locale/gl.js
CHANGED
|
@@ -267,7 +267,6 @@ const locale = {
|
|
|
267
267
|
"Permanent credits": "Recoñecementos permanentes",
|
|
268
268
|
"Please be sure the licence is compliant with your use.": "Asegúrate de que a licenza sexa compatíbel co uso que lle vas dar.",
|
|
269
269
|
"Please choose a format": "Escolle un formato",
|
|
270
|
-
"Please enter the name of the property": "Introduce o nome da propiedade",
|
|
271
270
|
"Please save the map first": "Garda o mapa primeiro",
|
|
272
271
|
"Popup (large)": "Xanela emerxente (grande)",
|
|
273
272
|
"Popup content style": "Estilo do contido da xanela emerxente",
|
|
@@ -397,20 +396,16 @@ const locale = {
|
|
|
397
396
|
"Max": "Máx.",
|
|
398
397
|
"From": "Desde",
|
|
399
398
|
"Until": "Ata",
|
|
400
|
-
"Example: key1,key2|Label 2,key3|Label 3|checkbox": " Exemplo: clave1,clave2|Etiqueta 2,clave3|Etiqueta 3|caixa de verificación",
|
|
401
399
|
"Edit in OpenStreetMap": "Editar en OpenStreetMap",
|
|
402
400
|
"Back to layers": "Volver ás capas",
|
|
403
401
|
"Filters": "Filtros",
|
|
404
402
|
"Comma separated list of properties to use when filtering features by text input": "Lista de propiedades separadas por comas a empregar ao filtrar funcións pola entrada de texto",
|
|
405
|
-
"Comma separated list of properties to use for filters (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.": "Lista de propiedades separadas por comas a empregar para os filtros (p. ex.: amiñaclave,outraclave). Para controlar a etiqueta, engádaa após unha | (p. ex.: amiñaclave|AmiñaClave,outraclave|Outra chave). Para controlar o tipo de campo de entrada, engádeo após outra | (p. ex.: amiñaclave|AmiñaClave|caixadeverificación,otraclave|Outra clave|datahora). Os valores permitidos para o tipo de campo de entrada son caixa de verificación (predeterminado), botón de opción, número, data e datahora.",
|
|
406
403
|
"Search keys": "Claves de busca",
|
|
407
|
-
"Filters keys": "Claves de filtrado",
|
|
408
404
|
"Filter data": "Filtrar datos",
|
|
409
405
|
"Search map features…": " Buscar elementos do mapa…",
|
|
410
406
|
"Reset all": "Restabelecer todo",
|
|
411
407
|
"Open browser": "Abrir o navegador",
|
|
412
408
|
"Open caption": "Abrir as lendas",
|
|
413
|
-
"Your map has been created with an anonymous account!": "O teu mapa creouse cunha conta anónima.",
|
|
414
409
|
"Real-time collaboration": "Colaboración en tempo real",
|
|
415
410
|
"Cannot parse data": "Non é posíbel analizar os datos",
|
|
416
411
|
"Start typing...": "Comeza a escribir…",
|
|
@@ -466,10 +461,6 @@ const locale = {
|
|
|
466
461
|
"Categories": "Categorias",
|
|
467
462
|
"Comma separated list of categories.": "Lista de categorías separadas por comas.",
|
|
468
463
|
"Categories mode": "Modo de categorías",
|
|
469
|
-
"Remove filter for this column": "Retirar o filtro para esta columna",
|
|
470
|
-
"Add filter for this column": "Engadir filtro para esta columna",
|
|
471
|
-
"Rename this column": "Cambiar o nome desta columna",
|
|
472
|
-
"Delete this column": "Eliminar esta columna",
|
|
473
464
|
"Name “{name}” should not contain a dot.": "O nome «{name}» non debe conter un punto.",
|
|
474
465
|
"This name already exists: “{name}”": "O nome «{name}» xa existe",
|
|
475
466
|
"Delete selected rows": "Eliminar as filas seleccionadas",
|
|
@@ -571,11 +562,8 @@ const locale = {
|
|
|
571
562
|
"Please choose an instance first.": "Please choose an instance first.",
|
|
572
563
|
"No geo column found: must be either `lat(itude)` and `lon(gitude)` or `geom(etry)`.": "No geo column found: must be either `lat(itude)` and `lon(gitude)` or `geom(etry)`.",
|
|
573
564
|
"Add a new field": "Add a new field",
|
|
574
|
-
"Are you sure you want to delete this field on all the features?": "Are you sure you want to delete this field on all the features?",
|
|
575
|
-
"Please enter the new name of this field": "Please enter the new name of this field",
|
|
576
565
|
"Cannot process MultiPoint": "Cannot process MultiPoint",
|
|
577
566
|
"Manage Fields": "Manage Fields",
|
|
578
|
-
"Rename this field": "Rename this field",
|
|
579
567
|
"Delete this field": "Delete this field",
|
|
580
568
|
"Double click to edit the name": "Double click to edit the name",
|
|
581
569
|
"Print map": "Print map",
|
|
@@ -595,7 +583,6 @@ const locale = {
|
|
|
595
583
|
"Transform to regular line": "Transform to regular line",
|
|
596
584
|
"Transform to route": "Transform to route",
|
|
597
585
|
"Restore route": "Restore route",
|
|
598
|
-
"Compute elevation": "Compute elevation",
|
|
599
586
|
"Profile": "Profile",
|
|
600
587
|
"Compute elevations": "Compute elevations",
|
|
601
588
|
"Route preference": "Route preference",
|
|
@@ -615,7 +602,46 @@ const locale = {
|
|
|
615
602
|
"Loss:": "Loss:",
|
|
616
603
|
"Altitude:": "Altitude:",
|
|
617
604
|
"Right-click to edit": "Right-click to edit",
|
|
618
|
-
"Draw along routes": "Draw along routes"
|
|
605
|
+
"Draw along routes": "Draw along routes",
|
|
606
|
+
"Skipping invalid geometry": "Skipping invalid geometry",
|
|
607
|
+
"Add filter": "Add filter",
|
|
608
|
+
"Min/Max": "Min/Max",
|
|
609
|
+
"Multiple choices": "Multiple choices",
|
|
610
|
+
"Exclusive choice": "Exclusive choice",
|
|
611
|
+
"Yes/No": "Yes/No",
|
|
612
|
+
"Add a field prior to create a filter.": "Add a field prior to create a filter.",
|
|
613
|
+
"Edit this filter": "Edit this filter",
|
|
614
|
+
"Remove this filter": "Remove this filter",
|
|
615
|
+
"Apply filter to": "Apply filter to",
|
|
616
|
+
"Filter on": "Filter on",
|
|
617
|
+
"Human readable name of the filter": "Human readable name of the filter",
|
|
618
|
+
"Widget for the filter": "Widget for the filter",
|
|
619
|
+
"Edit filter": "Edit filter",
|
|
620
|
+
"Edit this field": "Edit this field",
|
|
621
|
+
"all layers": "all layers",
|
|
622
|
+
"single layer": "single layer",
|
|
623
|
+
"unset": "unset",
|
|
624
|
+
"Filters will be displayed in the data browser to ease data selection.": "Filters will be displayed in the data browser to ease data selection.",
|
|
625
|
+
"[key=\"value\"][key2=\"value2\"] (eg. [boundary=\"educational\"][name=\"Académie de Lyon\"])": "[key=\"value\"][key2=\"value2\"] (eg. [boundary=\"educational\"][name=\"Académie de Lyon\"])",
|
|
626
|
+
"Field Name": "Field Name",
|
|
627
|
+
"Field Type": "Field Type",
|
|
628
|
+
"Manage field": "Manage field",
|
|
629
|
+
"Add filter for this field": "Add filter for this field",
|
|
630
|
+
"Name cannot be empty.": "Name cannot be empty.",
|
|
631
|
+
"Are you sure you want to delete this field on all the data?": "Are you sure you want to delete this field on all the data?",
|
|
632
|
+
"Anonymous map": "Anonymous map",
|
|
633
|
+
"Edit filter for this field": "Edit filter for this field",
|
|
634
|
+
"Fields, filters and keys": "Fields, filters and keys",
|
|
635
|
+
"Hey, you created a map without an account!": "Hey, you created a map without an account!",
|
|
636
|
+
"This map is anonymous, do you want to attach it to your account?": "This map is anonymous, do you want to attach it to your account?",
|
|
637
|
+
"The map has been upgraded to latest version, please save it.": "The map has been upgraded to latest version, please save it.",
|
|
638
|
+
"Elevation has been added!": "Elevation has been added!",
|
|
639
|
+
"Mapillary": "Mapillary",
|
|
640
|
+
"Wikidata": "Wikidata",
|
|
641
|
+
"Wikipedia contributors": "Wikipedia contributors",
|
|
642
|
+
"See on Wikipedia": "See on Wikipedia",
|
|
643
|
+
"Anonymous map: update who can see and edit it": "Anonymous map: update who can see and edit it",
|
|
644
|
+
"Login": "Login"
|
|
619
645
|
}
|
|
620
646
|
L.registerLocale("gl", locale)
|
|
621
647
|
L.setLocale("gl")
|
umap/static/umap/locale/gl.json
CHANGED
|
@@ -267,7 +267,6 @@
|
|
|
267
267
|
"Permanent credits": "Recoñecementos permanentes",
|
|
268
268
|
"Please be sure the licence is compliant with your use.": "Asegúrate de que a licenza sexa compatíbel co uso que lle vas dar.",
|
|
269
269
|
"Please choose a format": "Escolle un formato",
|
|
270
|
-
"Please enter the name of the property": "Introduce o nome da propiedade",
|
|
271
270
|
"Please save the map first": "Garda o mapa primeiro",
|
|
272
271
|
"Popup (large)": "Xanela emerxente (grande)",
|
|
273
272
|
"Popup content style": "Estilo do contido da xanela emerxente",
|
|
@@ -397,20 +396,16 @@
|
|
|
397
396
|
"Max": "Máx.",
|
|
398
397
|
"From": "Desde",
|
|
399
398
|
"Until": "Ata",
|
|
400
|
-
"Example: key1,key2|Label 2,key3|Label 3|checkbox": " Exemplo: clave1,clave2|Etiqueta 2,clave3|Etiqueta 3|caixa de verificación",
|
|
401
399
|
"Edit in OpenStreetMap": "Editar en OpenStreetMap",
|
|
402
400
|
"Back to layers": "Volver ás capas",
|
|
403
401
|
"Filters": "Filtros",
|
|
404
402
|
"Comma separated list of properties to use when filtering features by text input": "Lista de propiedades separadas por comas a empregar ao filtrar funcións pola entrada de texto",
|
|
405
|
-
"Comma separated list of properties to use for filters (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.": "Lista de propiedades separadas por comas a empregar para os filtros (p. ex.: amiñaclave,outraclave). Para controlar a etiqueta, engádaa após unha | (p. ex.: amiñaclave|AmiñaClave,outraclave|Outra chave). Para controlar o tipo de campo de entrada, engádeo após outra | (p. ex.: amiñaclave|AmiñaClave|caixadeverificación,otraclave|Outra clave|datahora). Os valores permitidos para o tipo de campo de entrada son caixa de verificación (predeterminado), botón de opción, número, data e datahora.",
|
|
406
403
|
"Search keys": "Claves de busca",
|
|
407
|
-
"Filters keys": "Claves de filtrado",
|
|
408
404
|
"Filter data": "Filtrar datos",
|
|
409
405
|
"Search map features…": " Buscar elementos do mapa…",
|
|
410
406
|
"Reset all": "Restabelecer todo",
|
|
411
407
|
"Open browser": "Abrir o navegador",
|
|
412
408
|
"Open caption": "Abrir as lendas",
|
|
413
|
-
"Your map has been created with an anonymous account!": "O teu mapa creouse cunha conta anónima.",
|
|
414
409
|
"Real-time collaboration": "Colaboración en tempo real",
|
|
415
410
|
"Cannot parse data": "Non é posíbel analizar os datos",
|
|
416
411
|
"Start typing...": "Comeza a escribir…",
|
|
@@ -466,10 +461,6 @@
|
|
|
466
461
|
"Categories": "Categorias",
|
|
467
462
|
"Comma separated list of categories.": "Lista de categorías separadas por comas.",
|
|
468
463
|
"Categories mode": "Modo de categorías",
|
|
469
|
-
"Remove filter for this column": "Retirar o filtro para esta columna",
|
|
470
|
-
"Add filter for this column": "Engadir filtro para esta columna",
|
|
471
|
-
"Rename this column": "Cambiar o nome desta columna",
|
|
472
|
-
"Delete this column": "Eliminar esta columna",
|
|
473
464
|
"Name “{name}” should not contain a dot.": "O nome «{name}» non debe conter un punto.",
|
|
474
465
|
"This name already exists: “{name}”": "O nome «{name}» xa existe",
|
|
475
466
|
"Delete selected rows": "Eliminar as filas seleccionadas",
|
|
@@ -571,11 +562,8 @@
|
|
|
571
562
|
"Please choose an instance first.": "Please choose an instance first.",
|
|
572
563
|
"No geo column found: must be either `lat(itude)` and `lon(gitude)` or `geom(etry)`.": "No geo column found: must be either `lat(itude)` and `lon(gitude)` or `geom(etry)`.",
|
|
573
564
|
"Add a new field": "Add a new field",
|
|
574
|
-
"Are you sure you want to delete this field on all the features?": "Are you sure you want to delete this field on all the features?",
|
|
575
|
-
"Please enter the new name of this field": "Please enter the new name of this field",
|
|
576
565
|
"Cannot process MultiPoint": "Cannot process MultiPoint",
|
|
577
566
|
"Manage Fields": "Manage Fields",
|
|
578
|
-
"Rename this field": "Rename this field",
|
|
579
567
|
"Delete this field": "Delete this field",
|
|
580
568
|
"Double click to edit the name": "Double click to edit the name",
|
|
581
569
|
"Print map": "Print map",
|
|
@@ -595,7 +583,6 @@
|
|
|
595
583
|
"Transform to regular line": "Transform to regular line",
|
|
596
584
|
"Transform to route": "Transform to route",
|
|
597
585
|
"Restore route": "Restore route",
|
|
598
|
-
"Compute elevation": "Compute elevation",
|
|
599
586
|
"Profile": "Profile",
|
|
600
587
|
"Compute elevations": "Compute elevations",
|
|
601
588
|
"Route preference": "Route preference",
|
|
@@ -615,5 +602,44 @@
|
|
|
615
602
|
"Loss:": "Loss:",
|
|
616
603
|
"Altitude:": "Altitude:",
|
|
617
604
|
"Right-click to edit": "Right-click to edit",
|
|
618
|
-
"Draw along routes": "Draw along routes"
|
|
605
|
+
"Draw along routes": "Draw along routes",
|
|
606
|
+
"Skipping invalid geometry": "Skipping invalid geometry",
|
|
607
|
+
"Add filter": "Add filter",
|
|
608
|
+
"Min/Max": "Min/Max",
|
|
609
|
+
"Multiple choices": "Multiple choices",
|
|
610
|
+
"Exclusive choice": "Exclusive choice",
|
|
611
|
+
"Yes/No": "Yes/No",
|
|
612
|
+
"Add a field prior to create a filter.": "Add a field prior to create a filter.",
|
|
613
|
+
"Edit this filter": "Edit this filter",
|
|
614
|
+
"Remove this filter": "Remove this filter",
|
|
615
|
+
"Apply filter to": "Apply filter to",
|
|
616
|
+
"Filter on": "Filter on",
|
|
617
|
+
"Human readable name of the filter": "Human readable name of the filter",
|
|
618
|
+
"Widget for the filter": "Widget for the filter",
|
|
619
|
+
"Edit filter": "Edit filter",
|
|
620
|
+
"Edit this field": "Edit this field",
|
|
621
|
+
"all layers": "all layers",
|
|
622
|
+
"single layer": "single layer",
|
|
623
|
+
"unset": "unset",
|
|
624
|
+
"Filters will be displayed in the data browser to ease data selection.": "Filters will be displayed in the data browser to ease data selection.",
|
|
625
|
+
"[key=\"value\"][key2=\"value2\"] (eg. [boundary=\"educational\"][name=\"Académie de Lyon\"])": "[key=\"value\"][key2=\"value2\"] (eg. [boundary=\"educational\"][name=\"Académie de Lyon\"])",
|
|
626
|
+
"Field Name": "Field Name",
|
|
627
|
+
"Field Type": "Field Type",
|
|
628
|
+
"Manage field": "Manage field",
|
|
629
|
+
"Add filter for this field": "Add filter for this field",
|
|
630
|
+
"Name cannot be empty.": "Name cannot be empty.",
|
|
631
|
+
"Are you sure you want to delete this field on all the data?": "Are you sure you want to delete this field on all the data?",
|
|
632
|
+
"Anonymous map": "Anonymous map",
|
|
633
|
+
"Edit filter for this field": "Edit filter for this field",
|
|
634
|
+
"Fields, filters and keys": "Fields, filters and keys",
|
|
635
|
+
"Hey, you created a map without an account!": "Hey, you created a map without an account!",
|
|
636
|
+
"This map is anonymous, do you want to attach it to your account?": "This map is anonymous, do you want to attach it to your account?",
|
|
637
|
+
"The map has been upgraded to latest version, please save it.": "The map has been upgraded to latest version, please save it.",
|
|
638
|
+
"Elevation has been added!": "Elevation has been added!",
|
|
639
|
+
"Mapillary": "Mapillary",
|
|
640
|
+
"Wikidata": "Wikidata",
|
|
641
|
+
"Wikipedia contributors": "Wikipedia contributors",
|
|
642
|
+
"See on Wikipedia": "See on Wikipedia",
|
|
643
|
+
"Anonymous map: update who can see and edit it": "Anonymous map: update who can see and edit it",
|
|
644
|
+
"Login": "Login"
|
|
619
645
|
}
|
umap/static/umap/locale/he.js
CHANGED
|
@@ -267,7 +267,6 @@ const locale = {
|
|
|
267
267
|
"Permanent credits": "Permanent credits",
|
|
268
268
|
"Please be sure the licence is compliant with your use.": "נא לוודא שהרישיון תואם לשימוש שלך.",
|
|
269
269
|
"Please choose a format": "נא לבחור תבנית",
|
|
270
|
-
"Please enter the name of the property": "נא למלא את שם המאפיין",
|
|
271
270
|
"Please save the map first": "נא לשמור את המפה קודם",
|
|
272
271
|
"Popup (large)": "חלונית מוקפצת (גדולה)",
|
|
273
272
|
"Popup content style": "סגנון תוכן חלונית מוקפצת",
|
|
@@ -397,20 +396,16 @@ const locale = {
|
|
|
397
396
|
"Max": "Max",
|
|
398
397
|
"From": "From",
|
|
399
398
|
"Until": "Until",
|
|
400
|
-
"Example: key1,key2|Label 2,key3|Label 3|checkbox": "Example: key1,key2|Label 2,key3|Label 3|checkbox",
|
|
401
399
|
"Edit in OpenStreetMap": "Edit in OpenStreetMap",
|
|
402
400
|
"Back to layers": "Back to layers",
|
|
403
401
|
"Filters": "Filters",
|
|
404
402
|
"Comma separated list of properties to use when filtering features by text input": "Comma separated list of properties to use when filtering features by text input",
|
|
405
|
-
"Comma separated list of properties to use for filters (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.": "Comma separated list of properties to use for filters (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.",
|
|
406
403
|
"Search keys": "Search keys",
|
|
407
|
-
"Filters keys": "Filters keys",
|
|
408
404
|
"Filter data": "Filter data",
|
|
409
405
|
"Search map features…": "Search map features…",
|
|
410
406
|
"Reset all": "Reset all",
|
|
411
407
|
"Open browser": "Open browser",
|
|
412
408
|
"Open caption": "Open caption",
|
|
413
|
-
"Your map has been created with an anonymous account!": "Your map has been created with an anonymous account!",
|
|
414
409
|
"Real-time collaboration": "Real-time collaboration",
|
|
415
410
|
"Cannot parse data": "Cannot parse data",
|
|
416
411
|
"Start typing...": "Start typing...",
|
|
@@ -466,10 +461,6 @@ const locale = {
|
|
|
466
461
|
"Categories": "Categories",
|
|
467
462
|
"Comma separated list of categories.": "Comma separated list of categories.",
|
|
468
463
|
"Categories mode": "Categories mode",
|
|
469
|
-
"Remove filter for this column": "Remove filter for this column",
|
|
470
|
-
"Add filter for this column": "Add filter for this column",
|
|
471
|
-
"Rename this column": "Rename this column",
|
|
472
|
-
"Delete this column": "Delete this column",
|
|
473
464
|
"Name “{name}” should not contain a dot.": "Name “{name}” should not contain a dot.",
|
|
474
465
|
"This name already exists: “{name}”": "This name already exists: “{name}”",
|
|
475
466
|
"Delete selected rows": "Delete selected rows",
|
|
@@ -571,11 +562,8 @@ const locale = {
|
|
|
571
562
|
"Please choose an instance first.": "Please choose an instance first.",
|
|
572
563
|
"No geo column found: must be either `lat(itude)` and `lon(gitude)` or `geom(etry)`.": "No geo column found: must be either `lat(itude)` and `lon(gitude)` or `geom(etry)`.",
|
|
573
564
|
"Add a new field": "Add a new field",
|
|
574
|
-
"Are you sure you want to delete this field on all the features?": "Are you sure you want to delete this field on all the features?",
|
|
575
|
-
"Please enter the new name of this field": "Please enter the new name of this field",
|
|
576
565
|
"Cannot process MultiPoint": "Cannot process MultiPoint",
|
|
577
566
|
"Manage Fields": "Manage Fields",
|
|
578
|
-
"Rename this field": "Rename this field",
|
|
579
567
|
"Delete this field": "Delete this field",
|
|
580
568
|
"Double click to edit the name": "Double click to edit the name",
|
|
581
569
|
"Print map": "Print map",
|
|
@@ -595,7 +583,6 @@ const locale = {
|
|
|
595
583
|
"Transform to regular line": "Transform to regular line",
|
|
596
584
|
"Transform to route": "Transform to route",
|
|
597
585
|
"Restore route": "Restore route",
|
|
598
|
-
"Compute elevation": "Compute elevation",
|
|
599
586
|
"Profile": "Profile",
|
|
600
587
|
"Compute elevations": "Compute elevations",
|
|
601
588
|
"Route preference": "Route preference",
|
|
@@ -615,7 +602,46 @@ const locale = {
|
|
|
615
602
|
"Loss:": "Loss:",
|
|
616
603
|
"Altitude:": "Altitude:",
|
|
617
604
|
"Right-click to edit": "Right-click to edit",
|
|
618
|
-
"Draw along routes": "Draw along routes"
|
|
605
|
+
"Draw along routes": "Draw along routes",
|
|
606
|
+
"Skipping invalid geometry": "Skipping invalid geometry",
|
|
607
|
+
"Add filter": "Add filter",
|
|
608
|
+
"Min/Max": "Min/Max",
|
|
609
|
+
"Multiple choices": "Multiple choices",
|
|
610
|
+
"Exclusive choice": "Exclusive choice",
|
|
611
|
+
"Yes/No": "Yes/No",
|
|
612
|
+
"Add a field prior to create a filter.": "Add a field prior to create a filter.",
|
|
613
|
+
"Edit this filter": "Edit this filter",
|
|
614
|
+
"Remove this filter": "Remove this filter",
|
|
615
|
+
"Apply filter to": "Apply filter to",
|
|
616
|
+
"Filter on": "Filter on",
|
|
617
|
+
"Human readable name of the filter": "Human readable name of the filter",
|
|
618
|
+
"Widget for the filter": "Widget for the filter",
|
|
619
|
+
"Edit filter": "Edit filter",
|
|
620
|
+
"Edit this field": "Edit this field",
|
|
621
|
+
"all layers": "all layers",
|
|
622
|
+
"single layer": "single layer",
|
|
623
|
+
"unset": "unset",
|
|
624
|
+
"Filters will be displayed in the data browser to ease data selection.": "Filters will be displayed in the data browser to ease data selection.",
|
|
625
|
+
"[key=\"value\"][key2=\"value2\"] (eg. [boundary=\"educational\"][name=\"Académie de Lyon\"])": "[key=\"value\"][key2=\"value2\"] (eg. [boundary=\"educational\"][name=\"Académie de Lyon\"])",
|
|
626
|
+
"Field Name": "Field Name",
|
|
627
|
+
"Field Type": "Field Type",
|
|
628
|
+
"Manage field": "Manage field",
|
|
629
|
+
"Add filter for this field": "Add filter for this field",
|
|
630
|
+
"Name cannot be empty.": "Name cannot be empty.",
|
|
631
|
+
"Are you sure you want to delete this field on all the data?": "Are you sure you want to delete this field on all the data?",
|
|
632
|
+
"Anonymous map": "Anonymous map",
|
|
633
|
+
"Edit filter for this field": "Edit filter for this field",
|
|
634
|
+
"Fields, filters and keys": "Fields, filters and keys",
|
|
635
|
+
"Hey, you created a map without an account!": "Hey, you created a map without an account!",
|
|
636
|
+
"This map is anonymous, do you want to attach it to your account?": "This map is anonymous, do you want to attach it to your account?",
|
|
637
|
+
"The map has been upgraded to latest version, please save it.": "The map has been upgraded to latest version, please save it.",
|
|
638
|
+
"Elevation has been added!": "Elevation has been added!",
|
|
639
|
+
"Mapillary": "Mapillary",
|
|
640
|
+
"Wikidata": "Wikidata",
|
|
641
|
+
"Wikipedia contributors": "Wikipedia contributors",
|
|
642
|
+
"See on Wikipedia": "See on Wikipedia",
|
|
643
|
+
"Anonymous map: update who can see and edit it": "Anonymous map: update who can see and edit it",
|
|
644
|
+
"Login": "Login"
|
|
619
645
|
}
|
|
620
646
|
L.registerLocale("he", locale)
|
|
621
647
|
L.setLocale("he")
|
umap/static/umap/locale/he.json
CHANGED
|
@@ -267,7 +267,6 @@
|
|
|
267
267
|
"Permanent credits": "Permanent credits",
|
|
268
268
|
"Please be sure the licence is compliant with your use.": "נא לוודא שהרישיון תואם לשימוש שלך.",
|
|
269
269
|
"Please choose a format": "נא לבחור תבנית",
|
|
270
|
-
"Please enter the name of the property": "נא למלא את שם המאפיין",
|
|
271
270
|
"Please save the map first": "נא לשמור את המפה קודם",
|
|
272
271
|
"Popup (large)": "חלונית מוקפצת (גדולה)",
|
|
273
272
|
"Popup content style": "סגנון תוכן חלונית מוקפצת",
|
|
@@ -397,20 +396,16 @@
|
|
|
397
396
|
"Max": "Max",
|
|
398
397
|
"From": "From",
|
|
399
398
|
"Until": "Until",
|
|
400
|
-
"Example: key1,key2|Label 2,key3|Label 3|checkbox": "Example: key1,key2|Label 2,key3|Label 3|checkbox",
|
|
401
399
|
"Edit in OpenStreetMap": "Edit in OpenStreetMap",
|
|
402
400
|
"Back to layers": "Back to layers",
|
|
403
401
|
"Filters": "Filters",
|
|
404
402
|
"Comma separated list of properties to use when filtering features by text input": "Comma separated list of properties to use when filtering features by text input",
|
|
405
|
-
"Comma separated list of properties to use for filters (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.": "Comma separated list of properties to use for filters (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.",
|
|
406
403
|
"Search keys": "Search keys",
|
|
407
|
-
"Filters keys": "Filters keys",
|
|
408
404
|
"Filter data": "Filter data",
|
|
409
405
|
"Search map features…": "Search map features…",
|
|
410
406
|
"Reset all": "Reset all",
|
|
411
407
|
"Open browser": "Open browser",
|
|
412
408
|
"Open caption": "Open caption",
|
|
413
|
-
"Your map has been created with an anonymous account!": "Your map has been created with an anonymous account!",
|
|
414
409
|
"Real-time collaboration": "Real-time collaboration",
|
|
415
410
|
"Cannot parse data": "Cannot parse data",
|
|
416
411
|
"Start typing...": "Start typing...",
|
|
@@ -466,10 +461,6 @@
|
|
|
466
461
|
"Categories": "Categories",
|
|
467
462
|
"Comma separated list of categories.": "Comma separated list of categories.",
|
|
468
463
|
"Categories mode": "Categories mode",
|
|
469
|
-
"Remove filter for this column": "Remove filter for this column",
|
|
470
|
-
"Add filter for this column": "Add filter for this column",
|
|
471
|
-
"Rename this column": "Rename this column",
|
|
472
|
-
"Delete this column": "Delete this column",
|
|
473
464
|
"Name “{name}” should not contain a dot.": "Name “{name}” should not contain a dot.",
|
|
474
465
|
"This name already exists: “{name}”": "This name already exists: “{name}”",
|
|
475
466
|
"Delete selected rows": "Delete selected rows",
|
|
@@ -571,11 +562,8 @@
|
|
|
571
562
|
"Please choose an instance first.": "Please choose an instance first.",
|
|
572
563
|
"No geo column found: must be either `lat(itude)` and `lon(gitude)` or `geom(etry)`.": "No geo column found: must be either `lat(itude)` and `lon(gitude)` or `geom(etry)`.",
|
|
573
564
|
"Add a new field": "Add a new field",
|
|
574
|
-
"Are you sure you want to delete this field on all the features?": "Are you sure you want to delete this field on all the features?",
|
|
575
|
-
"Please enter the new name of this field": "Please enter the new name of this field",
|
|
576
565
|
"Cannot process MultiPoint": "Cannot process MultiPoint",
|
|
577
566
|
"Manage Fields": "Manage Fields",
|
|
578
|
-
"Rename this field": "Rename this field",
|
|
579
567
|
"Delete this field": "Delete this field",
|
|
580
568
|
"Double click to edit the name": "Double click to edit the name",
|
|
581
569
|
"Print map": "Print map",
|
|
@@ -595,7 +583,6 @@
|
|
|
595
583
|
"Transform to regular line": "Transform to regular line",
|
|
596
584
|
"Transform to route": "Transform to route",
|
|
597
585
|
"Restore route": "Restore route",
|
|
598
|
-
"Compute elevation": "Compute elevation",
|
|
599
586
|
"Profile": "Profile",
|
|
600
587
|
"Compute elevations": "Compute elevations",
|
|
601
588
|
"Route preference": "Route preference",
|
|
@@ -615,5 +602,44 @@
|
|
|
615
602
|
"Loss:": "Loss:",
|
|
616
603
|
"Altitude:": "Altitude:",
|
|
617
604
|
"Right-click to edit": "Right-click to edit",
|
|
618
|
-
"Draw along routes": "Draw along routes"
|
|
605
|
+
"Draw along routes": "Draw along routes",
|
|
606
|
+
"Skipping invalid geometry": "Skipping invalid geometry",
|
|
607
|
+
"Add filter": "Add filter",
|
|
608
|
+
"Min/Max": "Min/Max",
|
|
609
|
+
"Multiple choices": "Multiple choices",
|
|
610
|
+
"Exclusive choice": "Exclusive choice",
|
|
611
|
+
"Yes/No": "Yes/No",
|
|
612
|
+
"Add a field prior to create a filter.": "Add a field prior to create a filter.",
|
|
613
|
+
"Edit this filter": "Edit this filter",
|
|
614
|
+
"Remove this filter": "Remove this filter",
|
|
615
|
+
"Apply filter to": "Apply filter to",
|
|
616
|
+
"Filter on": "Filter on",
|
|
617
|
+
"Human readable name of the filter": "Human readable name of the filter",
|
|
618
|
+
"Widget for the filter": "Widget for the filter",
|
|
619
|
+
"Edit filter": "Edit filter",
|
|
620
|
+
"Edit this field": "Edit this field",
|
|
621
|
+
"all layers": "all layers",
|
|
622
|
+
"single layer": "single layer",
|
|
623
|
+
"unset": "unset",
|
|
624
|
+
"Filters will be displayed in the data browser to ease data selection.": "Filters will be displayed in the data browser to ease data selection.",
|
|
625
|
+
"[key=\"value\"][key2=\"value2\"] (eg. [boundary=\"educational\"][name=\"Académie de Lyon\"])": "[key=\"value\"][key2=\"value2\"] (eg. [boundary=\"educational\"][name=\"Académie de Lyon\"])",
|
|
626
|
+
"Field Name": "Field Name",
|
|
627
|
+
"Field Type": "Field Type",
|
|
628
|
+
"Manage field": "Manage field",
|
|
629
|
+
"Add filter for this field": "Add filter for this field",
|
|
630
|
+
"Name cannot be empty.": "Name cannot be empty.",
|
|
631
|
+
"Are you sure you want to delete this field on all the data?": "Are you sure you want to delete this field on all the data?",
|
|
632
|
+
"Anonymous map": "Anonymous map",
|
|
633
|
+
"Edit filter for this field": "Edit filter for this field",
|
|
634
|
+
"Fields, filters and keys": "Fields, filters and keys",
|
|
635
|
+
"Hey, you created a map without an account!": "Hey, you created a map without an account!",
|
|
636
|
+
"This map is anonymous, do you want to attach it to your account?": "This map is anonymous, do you want to attach it to your account?",
|
|
637
|
+
"The map has been upgraded to latest version, please save it.": "The map has been upgraded to latest version, please save it.",
|
|
638
|
+
"Elevation has been added!": "Elevation has been added!",
|
|
639
|
+
"Mapillary": "Mapillary",
|
|
640
|
+
"Wikidata": "Wikidata",
|
|
641
|
+
"Wikipedia contributors": "Wikipedia contributors",
|
|
642
|
+
"See on Wikipedia": "See on Wikipedia",
|
|
643
|
+
"Anonymous map: update who can see and edit it": "Anonymous map: update who can see and edit it",
|
|
644
|
+
"Login": "Login"
|
|
619
645
|
}
|