umap-project 1.14.0a1__py3-none-any.whl → 1.14.0a2__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.

Files changed (182) hide show
  1. umap/__init__.py +1 -1
  2. umap/static/.gitignore +0 -0
  3. umap/static/umap/base.css +994 -0
  4. umap/static/umap/bitbucket.png +0 -0
  5. umap/static/umap/content.css +395 -0
  6. umap/static/umap/favicons/apple-touch-icon.png +0 -0
  7. umap/static/umap/favicons/favicon.ico +0 -0
  8. umap/static/umap/favicons/icon-192.png +0 -0
  9. umap/static/umap/favicons/icon-512.png +0 -0
  10. umap/static/umap/favicons/icon.svg +5 -0
  11. umap/static/umap/font/FiraSans-Light.woff +0 -0
  12. umap/static/umap/font/FiraSans-Light.woff2 +0 -0
  13. umap/static/umap/font/FiraSans-LightItalic.woff +0 -0
  14. umap/static/umap/font/FiraSans-LightItalic.woff2 +0 -0
  15. umap/static/umap/font/FiraSans-SemiBold.woff +0 -0
  16. umap/static/umap/font/FiraSans-SemiBold.woff2 +0 -0
  17. umap/static/umap/font.css +33 -0
  18. umap/static/umap/github.png +0 -0
  19. umap/static/umap/img/16-white.svg +190 -0
  20. umap/static/umap/img/16.svg +182 -0
  21. umap/static/umap/img/24-white.svg +62 -0
  22. umap/static/umap/img/24.svg +90 -0
  23. umap/static/umap/img/edit.svg +7 -0
  24. umap/static/umap/img/icon-bg.png +0 -0
  25. umap/static/umap/img/logo.svg +4 -0
  26. umap/static/umap/img/logo_filigree.png +0 -0
  27. umap/static/umap/img/logo_small.svg +14 -0
  28. umap/static/umap/img/marker.png +0 -0
  29. umap/static/umap/img/opensource.svg +7 -0
  30. umap/static/umap/img/osm.svg +7 -0
  31. umap/static/umap/img/search.gif +0 -0
  32. umap/static/umap/img/source/16-white.svg +980 -0
  33. umap/static/umap/img/source/16.svg +201 -0
  34. umap/static/umap/img/source/24-white.svg +83 -0
  35. umap/static/umap/img/source/24.svg +110 -0
  36. umap/static/umap/js/components/fragment.js +13 -0
  37. umap/static/umap/js/modules/global.js +8 -0
  38. umap/static/umap/js/modules/urls.js +29 -0
  39. umap/static/umap/js/umap.autocomplete.js +336 -0
  40. umap/static/umap/js/umap.browser.js +148 -0
  41. umap/static/umap/js/umap.controls.js +1542 -0
  42. umap/static/umap/js/umap.core.js +851 -0
  43. umap/static/umap/js/umap.datalayer.permissions.js +72 -0
  44. umap/static/umap/js/umap.features.js +1216 -0
  45. umap/static/umap/js/umap.forms.js +1267 -0
  46. umap/static/umap/js/umap.icon.js +234 -0
  47. umap/static/umap/js/umap.importer.js +166 -0
  48. umap/static/umap/js/umap.js +2010 -0
  49. umap/static/umap/js/umap.layer.js +1636 -0
  50. umap/static/umap/js/umap.permissions.js +212 -0
  51. umap/static/umap/js/umap.popup.js +340 -0
  52. umap/static/umap/js/umap.share.js +254 -0
  53. umap/static/umap/js/umap.slideshow.js +165 -0
  54. umap/static/umap/js/umap.tableeditor.js +120 -0
  55. umap/static/umap/js/umap.ui.js +240 -0
  56. umap/static/umap/js/umap.xhr.js +304 -0
  57. umap/static/umap/locale/am_ET.js +447 -0
  58. umap/static/umap/locale/am_ET.json +445 -0
  59. umap/static/umap/locale/ar.js +447 -0
  60. umap/static/umap/locale/ar.json +445 -0
  61. umap/static/umap/locale/ast.js +447 -0
  62. umap/static/umap/locale/ast.json +445 -0
  63. umap/static/umap/locale/bg.js +447 -0
  64. umap/static/umap/locale/bg.json +445 -0
  65. umap/static/umap/locale/br.js +447 -0
  66. umap/static/umap/locale/br.json +445 -0
  67. umap/static/umap/locale/ca.js +447 -0
  68. umap/static/umap/locale/ca.json +445 -0
  69. umap/static/umap/locale/cs_CZ.js +447 -0
  70. umap/static/umap/locale/cs_CZ.json +445 -0
  71. umap/static/umap/locale/da.js +447 -0
  72. umap/static/umap/locale/da.json +445 -0
  73. umap/static/umap/locale/de.js +447 -0
  74. umap/static/umap/locale/de.json +445 -0
  75. umap/static/umap/locale/el.js +447 -0
  76. umap/static/umap/locale/el.json +445 -0
  77. umap/static/umap/locale/en.js +447 -0
  78. umap/static/umap/locale/en.json +445 -0
  79. umap/static/umap/locale/en_US.json +445 -0
  80. umap/static/umap/locale/es.js +447 -0
  81. umap/static/umap/locale/es.json +445 -0
  82. umap/static/umap/locale/et.js +447 -0
  83. umap/static/umap/locale/et.json +445 -0
  84. umap/static/umap/locale/eu.js +413 -0
  85. umap/static/umap/locale/eu.json +411 -0
  86. umap/static/umap/locale/fa_IR.js +447 -0
  87. umap/static/umap/locale/fa_IR.json +445 -0
  88. umap/static/umap/locale/fi.js +447 -0
  89. umap/static/umap/locale/fi.json +445 -0
  90. umap/static/umap/locale/fr.js +447 -0
  91. umap/static/umap/locale/fr.json +445 -0
  92. umap/static/umap/locale/gl.js +447 -0
  93. umap/static/umap/locale/gl.json +445 -0
  94. umap/static/umap/locale/he.js +447 -0
  95. umap/static/umap/locale/he.json +445 -0
  96. umap/static/umap/locale/hr.js +447 -0
  97. umap/static/umap/locale/hr.json +445 -0
  98. umap/static/umap/locale/hu.js +447 -0
  99. umap/static/umap/locale/hu.json +445 -0
  100. umap/static/umap/locale/id.js +447 -0
  101. umap/static/umap/locale/id.json +445 -0
  102. umap/static/umap/locale/is.js +447 -0
  103. umap/static/umap/locale/is.json +445 -0
  104. umap/static/umap/locale/it.js +447 -0
  105. umap/static/umap/locale/it.json +445 -0
  106. umap/static/umap/locale/ja.js +447 -0
  107. umap/static/umap/locale/ja.json +445 -0
  108. umap/static/umap/locale/ko.js +447 -0
  109. umap/static/umap/locale/ko.json +445 -0
  110. umap/static/umap/locale/lt.js +447 -0
  111. umap/static/umap/locale/lt.json +445 -0
  112. umap/static/umap/locale/ms.js +447 -0
  113. umap/static/umap/locale/ms.json +445 -0
  114. umap/static/umap/locale/nl.js +447 -0
  115. umap/static/umap/locale/nl.json +445 -0
  116. umap/static/umap/locale/no.js +447 -0
  117. umap/static/umap/locale/no.json +445 -0
  118. umap/static/umap/locale/pl.js +447 -0
  119. umap/static/umap/locale/pl.json +445 -0
  120. umap/static/umap/locale/pl_PL.json +445 -0
  121. umap/static/umap/locale/pt.js +447 -0
  122. umap/static/umap/locale/pt.json +445 -0
  123. umap/static/umap/locale/pt_BR.js +447 -0
  124. umap/static/umap/locale/pt_BR.json +445 -0
  125. umap/static/umap/locale/pt_PT.js +447 -0
  126. umap/static/umap/locale/pt_PT.json +445 -0
  127. umap/static/umap/locale/ro.js +447 -0
  128. umap/static/umap/locale/ro.json +445 -0
  129. umap/static/umap/locale/ru.js +447 -0
  130. umap/static/umap/locale/ru.json +445 -0
  131. umap/static/umap/locale/si.js +439 -0
  132. umap/static/umap/locale/si.json +437 -0
  133. umap/static/umap/locale/sk_SK.js +447 -0
  134. umap/static/umap/locale/sk_SK.json +445 -0
  135. umap/static/umap/locale/sl.js +447 -0
  136. umap/static/umap/locale/sl.json +445 -0
  137. umap/static/umap/locale/sr.js +447 -0
  138. umap/static/umap/locale/sr.json +445 -0
  139. umap/static/umap/locale/sv.js +447 -0
  140. umap/static/umap/locale/sv.json +445 -0
  141. umap/static/umap/locale/th_TH.js +447 -0
  142. umap/static/umap/locale/th_TH.json +445 -0
  143. umap/static/umap/locale/tr.js +447 -0
  144. umap/static/umap/locale/tr.json +445 -0
  145. umap/static/umap/locale/uk_UA.js +447 -0
  146. umap/static/umap/locale/uk_UA.json +445 -0
  147. umap/static/umap/locale/vi.js +447 -0
  148. umap/static/umap/locale/vi.json +445 -0
  149. umap/static/umap/locale/vi_VN.json +445 -0
  150. umap/static/umap/locale/zh.js +447 -0
  151. umap/static/umap/locale/zh.json +445 -0
  152. umap/static/umap/locale/zh_CN.json +445 -0
  153. umap/static/umap/locale/zh_TW.Big5.json +445 -0
  154. umap/static/umap/locale/zh_TW.js +447 -0
  155. umap/static/umap/locale/zh_TW.json +445 -0
  156. umap/static/umap/map.css +1843 -0
  157. umap/static/umap/nav.css +81 -0
  158. umap/static/umap/openstreetmap.png +0 -0
  159. umap/static/umap/test/.eslintrc +22 -0
  160. umap/static/umap/test/Choropleth.js +243 -0
  161. umap/static/umap/test/Controls.js +100 -0
  162. umap/static/umap/test/DataLayer.js +495 -0
  163. umap/static/umap/test/Feature.js +382 -0
  164. umap/static/umap/test/Map.Export.js +106 -0
  165. umap/static/umap/test/Map.Init.js +46 -0
  166. umap/static/umap/test/Map.js +342 -0
  167. umap/static/umap/test/Marker.js +122 -0
  168. umap/static/umap/test/Permissions.js +74 -0
  169. umap/static/umap/test/Polygon.js +367 -0
  170. umap/static/umap/test/Polyline.js +402 -0
  171. umap/static/umap/test/TableEditor.js +100 -0
  172. umap/static/umap/test/URLs.js +54 -0
  173. umap/static/umap/test/Util.js +549 -0
  174. umap/static/umap/test/_pre.js +460 -0
  175. umap/static/umap/test/index.html +135 -0
  176. umap/static/umap/theme.css +1 -0
  177. umap/static/umap/twitter.png +0 -0
  178. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/METADATA +1 -1
  179. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/RECORD +182 -6
  180. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/WHEEL +0 -0
  181. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/entry_points.txt +0 -0
  182. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,447 @@
1
+ const locale = {
2
+ "Allow scroll wheel zoom?": "Autoriser le zoom avec la molette ?",
3
+ "Automatic": "Automatique",
4
+ "Ball": "Épingle",
5
+ "Cancel": "Annuler",
6
+ "Caption": "Légende",
7
+ "Choose the data format": "Choisir le format des données",
8
+ "Choose the layer of the feature": "Choisir le calque de l'élément",
9
+ "Circle": "Cercle",
10
+ "Clustered": "Avec cluster",
11
+ "Data browser": "Visualiseur de données",
12
+ "Default": "Par défaut",
13
+ "Default zoom level": "Niveau de zoom par défaut",
14
+ "Default: name": "Par défaut : name",
15
+ "Display label": "Afficher une étiquette",
16
+ "Display the control to open OpenStreetMap editor": "Afficher le bouton pour ouvrir l'éditeur d'OpenStreetMap",
17
+ "Display the data layers control": "Afficher le bouton d'accès rapide aux calques de données",
18
+ "Display the embed control": "Afficher le bouton de partage",
19
+ "Display the fullscreen control": "Afficher le bouton de plein écran",
20
+ "Display the locate control": "Afficher le bouton de localisation",
21
+ "Display the measure control": "Afficher le bouton de mesures",
22
+ "Display the search control": "Afficher le bouton de recherche",
23
+ "Display the tile layers control": "Afficher le bouton permettant de changer le fond de carte",
24
+ "Display the zoom control": "Afficher les boutons de zoom",
25
+ "Do you want to display a caption bar?": "Voulez-vous afficher une barre de légende",
26
+ "Do you want to display a minimap?": "Voulez-vous afficher une mini carte de situation ?",
27
+ "Do you want to display a panel on load?": "Voulez-vous afficher un panneau latéral au chargement ?",
28
+ "Do you want to display popup footer?": "Voulez-vous afficher les boutons de navigation en bas des popups ?",
29
+ "Do you want to display the scale control?": "Voulez-vous afficher l'échelle de la carte ?",
30
+ "Do you want to display the «more» control?": "Voulez-vous afficher le bouton « Plus » ?",
31
+ "Drop": "Goutte",
32
+ "GeoRSS (only link)": "GeoRSS (lien seul)",
33
+ "GeoRSS (title + image)": "GeoRSS (titre + image)",
34
+ "Heatmap": "Heatmap",
35
+ "Icon shape": "Forme de l'icône",
36
+ "Icon symbol": "Image de l'icône",
37
+ "Inherit": "Hériter",
38
+ "Label direction": "Direction de l'étiquette",
39
+ "Label key": "Clé pour le libellé",
40
+ "Labels are clickable": "Étiquette cliquable",
41
+ "None": "Aucun",
42
+ "On the bottom": "Bas",
43
+ "On the left": "Gauche",
44
+ "On the right": "Droite",
45
+ "On the top": "Haut",
46
+ "Popup content template": "Gabarit manuel de popup",
47
+ "Side panel": "Panneau latéral",
48
+ "Simplify": "Simplifier",
49
+ "Table": "Tableau",
50
+ "always": "toujours",
51
+ "clear": "effacer",
52
+ "collapsed": "fermé",
53
+ "color": "Couleur",
54
+ "dash array": "traitillé",
55
+ "define": "définir",
56
+ "description": "description",
57
+ "expanded": "ouvert",
58
+ "fill": "remplissage",
59
+ "fill color": "couleur de remplissage",
60
+ "fill opacity": "opacité du remplissage",
61
+ "hidden": "caché",
62
+ "iframe": "iframe",
63
+ "inherit": "hériter",
64
+ "name": "nom",
65
+ "never": "jamais",
66
+ "new window": "nouvelle fenêtre",
67
+ "no": "non",
68
+ "on hover": "Au survol",
69
+ "opacity": "opacité",
70
+ "parent window": "fenêtre parente",
71
+ "stroke": "trait",
72
+ "weight": "épaisseur",
73
+ "yes": "oui",
74
+ "{delay} seconds": "{delay} secondes",
75
+ "# one hash for main heading": "# un dièse pour titre 1",
76
+ "## two hashes for second heading": "## deux dièses pour titre 2",
77
+ "### three hashes for third heading": "### trois dièses pour titre 3",
78
+ "**double star for bold**": "**double astérisque pour gras**",
79
+ "A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "Liste de nombres séparés par une virgule, définissant les tirets et espaces. Ex.: \"5, 10, 15\".",
80
+ "About": "À propos",
81
+ "Action not allowed :(": "Action non autorisée :(",
82
+ "Activate slideshow mode": "Activer le mode diaporama",
83
+ "Add a layer": "Ajouter un calque",
84
+ "Add a line to the current multi": "Ajouter une ligne au groupe courant",
85
+ "Add a new property": "Ajouter une propriété",
86
+ "Add a polygon to the current multi": "Ajouter un polygon au groupe courant",
87
+ "Advanced actions": "Actions avancées",
88
+ "Advanced properties": "Propriétés avancées",
89
+ "All properties are imported.": "Toutes les propriétés sont importées.",
90
+ "Allow interactions": "Autoriser les interactions",
91
+ "An error occured": "Une erreur est survenue",
92
+ "Are you sure you want to cancel your changes?": "Êtes-vous sûr de vouloir annuler vos modifications ?",
93
+ "Are you sure you want to clone this map and all its datalayers?": "Êtes-vous sûr de vouloir cloner cette carte et ses calques de données?",
94
+ "Are you sure you want to delete the feature?": "Êtes-vous sûr de vouloir supprimer cet élément?",
95
+ "Are you sure you want to delete this layer?": "Voulez-vous vraiment supprimer ce calque ?",
96
+ "Are you sure you want to delete this map?": "Êtes-vous sûr de vouloir supprimer cette carte?",
97
+ "Are you sure you want to delete this property on all the features?": "Supprimer la propriété sur tous les éléments ?",
98
+ "Are you sure you want to restore this version?": "Êtes-vous sûr de vouloir restaurer cette version ?",
99
+ "Attach the map to my account": "Lier cette carte à mon compte",
100
+ "Auto": "Auto",
101
+ "Autostart when map is loaded": "Lancer au chargement de la carte",
102
+ "Bring feature to center": "Centrer la carte sur cet élément",
103
+ "Browse data": "Visualiser les données",
104
+ "Cancel edits": "Annuler les modifications",
105
+ "Center map on your location": "Centrer la carte sur votre position",
106
+ "Change map background": "Changer le fond de carte",
107
+ "Change tilelayers": "Changer le fond de carte",
108
+ "Choose a preset": "Choisir dans les présélections",
109
+ "Choose the format of the data to import": "Choisir le format des données pour l'import",
110
+ "Choose the layer to import in": "Choisir le calque de données pour l'import",
111
+ "Click last point to finish shape": "Cliquer sur le dernier point pour finir le tracé",
112
+ "Click to add a marker": "Cliquer pour ajouter le marqueur",
113
+ "Click to continue drawing": "Cliquer pour continuer le tracé",
114
+ "Click to edit": "Cliquer pour modifier",
115
+ "Click to start drawing a line": "Cliquer pour commencer une ligne",
116
+ "Click to start drawing a polygon": "Cliquer pour commencer un polygone",
117
+ "Clone": "Cloner",
118
+ "Clone of {name}": "Clone de {name}",
119
+ "Clone this feature": "Dupliquer",
120
+ "Clone this map": "Cloner cette carte",
121
+ "Close": "Fermer",
122
+ "Clustering radius": "Rayon du cluster",
123
+ "Comma separated list of properties to use when filtering features": "Propriétés à utiliser pour filtrer les éléments (séparées par des virgules)",
124
+ "Comma, tab or semi-colon separated values. SRS WGS84 is implied. Only Point geometries are imported. The import will look at the column headers for any mention of «lat» and «lon» at the begining of the header, case insensitive. All other column are imported as properties.": "Virgule, tabulation ou point-virgule pour séparer des valeurs. SRS WGS84 est implicite. Seuls les points géométriques sont importés. L'importation se référera au titre dans les entêtes de colonnes de «lat» et «lon» au début de l'en-tête, et est insensible à la casse. Toutes les autres colonnes sont importées en tant que propriétés.",
125
+ "Continue line": "Continuer la ligne",
126
+ "Continue line (Ctrl+Click)": "Continue la ligne (Ctrl+Clic)",
127
+ "Coordinates": "Coordonnées",
128
+ "Credits": "Crédits",
129
+ "Current view instead of default map view?": "Vue courante plutôt que la vue par défaut ?",
130
+ "Custom background": "Fond de carte personnalisé",
131
+ "Data is browsable": "Données naviguables",
132
+ "Default interaction options": "Options d'interaction par défaut",
133
+ "Default properties": "Propriétés par défaut",
134
+ "Default shape properties": "Propriétés de forme par défaut",
135
+ "Define link to open in a new window on polygon click.": "Définit un lien à ouvrir dans une nouvelle fenêtre au clic sur le polygone.",
136
+ "Delay between two transitions when in play mode": "Délai entre les transitions en mode lecture",
137
+ "Delete": "Supprimer",
138
+ "Delete all layers": "Supprimer tous les calques",
139
+ "Delete layer": "Supprimer le calque",
140
+ "Delete this feature": "Supprimer cet élément",
141
+ "Delete this property on all the features": "Supprimer cette propriété",
142
+ "Delete this shape": "Supprimer ce tracé",
143
+ "Delete this vertex (Alt+Click)": "Supprimer ce point (Alt+Clic)",
144
+ "Directions from here": "Itinéraire à partir de ce lieu",
145
+ "Display measure": "Afficher les dimensions",
146
+ "Display on load": "Afficher au chargement",
147
+ "Download": "Télécharger",
148
+ "Drag to reorder": "Glisser pour réordonner",
149
+ "Draw a marker": "Ajouter un marqueur",
150
+ "Draw a polygon": "Dessiner un polygone",
151
+ "Draw a polyline": "Dessiner une ligne",
152
+ "Dynamic": "Dynamique",
153
+ "Dynamic properties": "Propriétés dynamiques",
154
+ "Edit": "Éditer",
155
+ "Edit feature's layer": "Éditer le calque de l'élément",
156
+ "Edit map properties": "Éditer les propriétés de la carte",
157
+ "Edit properties in a table": "Éditer dans un tableau",
158
+ "Edit this feature": "Éditer cet élément",
159
+ "Embed the map": "Intégrer la carte dans une iframe",
160
+ "Empty": "Vider",
161
+ "Error in the tilelayer URL": "Erreur dans l'URL du fond de carte",
162
+ "Error while fetching {url}": "Erreur en appelant l'URL {url}",
163
+ "Exit Fullscreen": "Quitter le plein écran",
164
+ "Extract shape to separate feature": "Extraire la forme",
165
+ "Fetch data each time map view changes.": "Récupère les données à chaque fois que la vue de la carte change.",
166
+ "Filter keys": "Clés de filtre",
167
+ "Format": "Format",
168
+ "From zoom": "À partir du zoom",
169
+ "Go to «{feature}»": "Naviguer jusqu'à «{feature}»",
170
+ "Heatmap intensity property": "Propriété pour l'intensité de la heatmap",
171
+ "Heatmap radius": "Rayon de heatmap",
172
+ "Help": "Aide",
173
+ "Hide controls": "Masquer les outils",
174
+ "Home": "Accueil",
175
+ "How much to simplify the polyline on each zoom level (more = better performance and smoother look, less = more accurate)": "Valeur de simplification des lignes pour chaque niveau de zoom (grand nombre = meilleure performance, petit nombre = plus précis)",
176
+ "Iframe with custom height (in px): {{{http://iframe.url.com|height}}}": "Iframe avec hauteur (en pixels): {{{http://iframe.url.com|hauteur}}}",
177
+ "Iframe with custom height and width (in px): {{{http://iframe.url.com|height*width}}}": "Iframe avec hauteur et largeur (en px) : {{{http://iframe.url.com|height*width}}}",
178
+ "Iframe: {{{http://iframe.url.com}}}": "Iframe : {{{http://iframe.url.com}}}",
179
+ "Image with custom width (in px): {{http://image.url.com|width}}": "Image avec largeur (en pixels) : {{http://image.url.com|largeur}}",
180
+ "Image: {{http://image.url.com}}": "Image : {{http://image.url.com}}",
181
+ "Import": "Importer",
182
+ "Import data": "Importer des données",
183
+ "Import in a new layer": "Importer dans un nouveau calque",
184
+ "Imports all umap data, including layers and settings.": "Importer toutes les données de la carte, y compris les calques et les propriétés",
185
+ "Include full screen link?": "Inclure le lien \"plein écran\" ?",
186
+ "Interaction options": "Options d'interaction",
187
+ "Invalid umap data": "Données uMap invalides",
188
+ "Invalid umap data in {filename}": "Les données du fichier {filename} ne sont pas valides comme format uMap",
189
+ "Keep current visible layers": "Garder les calques visibles actuellement",
190
+ "Latitude": "Latitude",
191
+ "Layer": "Calque",
192
+ "Layer properties": "Propriétés du calque",
193
+ "Licence": "Licence",
194
+ "Limit bounds": "Limites géographiques",
195
+ "Link to…": "Lien vers…",
196
+ "Link with text: [[http://example.com|text of the link]]": "Lien avec texte : [[http://exemple.fr|texte du lien]]",
197
+ "Long credits": "Crédit",
198
+ "Longitude": "Longitude",
199
+ "Make main shape": "Tracé principal",
200
+ "Manage layers": "Gérer les calques",
201
+ "Map background credits": "Crédits pour le fond de carte",
202
+ "Map has been attached to your account": "La carte est maintenant liée à votre compte",
203
+ "Map has been saved!": "La carte a été sauvegardée !",
204
+ "Map user content has been published under licence": "Les contenus sur la carte ont été publiés avec la licence",
205
+ "Map's editors": "Éditeurs de la carte",
206
+ "Map's owner": "Propriétaire de la carte",
207
+ "Merge lines": "Fusionner les lignes",
208
+ "More controls": "Plus d'outils",
209
+ "Must be a valid CSS value (eg.: DarkBlue or #123456)": "Doit être une valeur CSS valide (ex. : DarkBlue ou #123456)",
210
+ "No licence has been set": "Aucune licence définie",
211
+ "No results": "Aucun résultat",
212
+ "Open link in…": "Ouvrir le lien dans…",
213
+ "Open this map extent in a map editor to provide more accurate data to OpenStreetMap": "Ouvrir cette carte dans un éditeur OpenStreetMap pour améliorer les données",
214
+ "Optional intensity property for heatmap": "Propriété optionnelle à utiliser pour calculer l'intensité de la heatmap",
215
+ "Optional. Same as color if not set.": "Optionnel. La couleur principale sera utilisée si laissé vide.",
216
+ "Override clustering radius (default 80)": "Valeur de rayon personnalisée pour le cluster (par défaut : 80)",
217
+ "Override heatmap radius (default 25)": "Valeur de rayon personnalisée pour la heatmap (par défaut : 25)",
218
+ "Please be sure the licence is compliant with your use.": "Pensez à vérifier que la licence de ces données vous autorise à les utiliser.",
219
+ "Please choose a format": "Merci de choisir un format",
220
+ "Please enter the name of the property": "Merci d'entrer le nom de la propriété",
221
+ "Please enter the new name of this property": "Veuillez entrer le nouveau nom de la propriété",
222
+ "Problem in the response": "Problème dans la réponse du serveur",
223
+ "Problem in the response format": "Problème dans le format de la réponse",
224
+ "Properties imported:": "Propriétés importées :",
225
+ "Provide an URL here": "Renseigner une URL",
226
+ "Proxy request": "Avec proxy",
227
+ "Remote data": "Données distantes",
228
+ "Remove shape from the multi": "Extraire le tracé du groupe",
229
+ "Rename this property on all the features": "Renommer la propriété",
230
+ "Replace layer content": "Remplacer le contenu du calque",
231
+ "Restore this version": "Restaurer cette version",
232
+ "Save": "Enregistrer",
233
+ "Save anyway": "Continuer",
234
+ "Save current edits": "Enregistrer les changements courants",
235
+ "Save this center and zoom": "Enregistrer le zoom et le centre actuels",
236
+ "Save this location as new feature": "Enregistrer ce lieu comme élément de la carte",
237
+ "Search location": "Chercher un lieu",
238
+ "See all": "Tout voir",
239
+ "See data layers": "Voir les calques",
240
+ "See full screen": "Voir en plein écran",
241
+ "Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "Désactiver pour masquer ce calque du diaporama, du navigateur de données…",
242
+ "Shape properties": "Propriétés de la forme",
243
+ "Short credits": "Crédit court",
244
+ "Show/hide layer": "Montrer/masquer un calque",
245
+ "Simple link: [[http://example.com]]": "Lien simple : [[https://exemple.fr]]",
246
+ "Slideshow": "Diaporama",
247
+ "Sort key": "Clé de tri",
248
+ "Split line": "Scinder la ligne",
249
+ "Start a hole here": "Ajouter un tracé intérieur",
250
+ "Start slideshow": "Commencer",
251
+ "Stop editing": "Quitter le mode édition",
252
+ "Stop slideshow": "Arrêter",
253
+ "Supported scheme": "Schéma supporté",
254
+ "Supported variables that will be dynamically replaced": "Variables qui seront automatiquement remplacées",
255
+ "TMS format": "format de type TMS",
256
+ "Text color for the cluster label": "Couleur du texte du cluster",
257
+ "Text formatting": "Mise en forme du texte",
258
+ "To use if remote server doesn't allow cross domain (slower)": "Cocher si le serveur distant n'autorise pas le cross domain (plus lent)",
259
+ "To zoom": "Jusqu'au zoom",
260
+ "Transfer shape to edited feature": "Adjoindre le tracé au groupe courant",
261
+ "Transform to lines": "Transformer en lignes",
262
+ "Transform to polygon": "Transformer en polygone",
263
+ "Type of layer": "Type de calque",
264
+ "Unable to detect format of file {filename}": "Impossible de détecter le format du fichier {filename}",
265
+ "Untitled layer": "Calque sans nom",
266
+ "Untitled map": "Carte sans nom",
267
+ "Update permissions": "Mettre à jour les permissions",
268
+ "Update permissions and editors": "Changer les permissions et les éditeurs",
269
+ "Url": "URL",
270
+ "Use current bounds": "Utiliser la vue courante",
271
+ "Use placeholders with feature properties between brackets, eg. {name}, they will be dynamically replaced by the corresponding values.": "Utilisez des variables avec les noms de propriétés de vos éléments entre accolades, ex. {name}, elles seront remplacées dynamiquement par les valeurs correspondantes.",
272
+ "User content credits": "Crédit pour le contenu utilisateur",
273
+ "User interface options": "Options d'interface",
274
+ "Versions": "Versions",
275
+ "View Fullscreen": "Voir en plein écran",
276
+ "Where do we go from here?": "C'est par où pour aller plus loin?",
277
+ "Whether to display or not polygons paths.": "Afficher les contours des polygones.",
278
+ "Whether to fill polygons with color.": "Remplir les polygones avec de la couleur.",
279
+ "Who can edit": "Qui peut modifier",
280
+ "Who can view": "Qui peut voir",
281
+ "Will be displayed in the bottom right corner of the map": "S'affiche dans le coin en bas à droite de la carte",
282
+ "Will be visible in the caption of the map": "Sera visible dans la légende de la carte",
283
+ "Woops! Someone else seems to have edited the data. You can save anyway, but this will erase the changes made by others.": "Aïe ! Quelqu'un d'autre semble avoir modifié la carte. Vous pouvez continuer l'enregistrement, mais ses données seront perdues.",
284
+ "Zoom in": "Zoomer",
285
+ "Zoom level for automatic zooms": "Niveau de zoom automatique",
286
+ "Zoom out": "Dézoomer",
287
+ "Zoom to layer extent": "Zoomer jusqu'à voir les données du calque",
288
+ "Zoom to the next": "Suivant",
289
+ "Zoom to the previous": "Précédent",
290
+ "Zoom to this feature": "Zoomer sur cet élément",
291
+ "Zoom to this place": "Zoomer vers ce lieu",
292
+ "attribution": "attribution",
293
+ "by": "par",
294
+ "display name": "nom",
295
+ "height": "hauteur",
296
+ "licence": "licence",
297
+ "max East": "limite est",
298
+ "max North": "limite nord",
299
+ "max South": "limite sud",
300
+ "max West": "limite ouest",
301
+ "max zoom": "zoom max",
302
+ "min zoom": "zoom min",
303
+ "next": "suivant",
304
+ "previous": "précédent",
305
+ "width": "largeur",
306
+ "{count} errors during import: {message}": "{count} erreurs pendant l'import: {message}",
307
+ "Measure distances": "Mesurer les distances",
308
+ "NM": "NM",
309
+ "kilometers": "kilomètres",
310
+ "km": "km",
311
+ "mi": "mi",
312
+ "miles": "miles",
313
+ "nautical miles": "miles nautiques",
314
+ "1 day": "1 jour",
315
+ "1 hour": "1 heure",
316
+ "5 min": "5 min",
317
+ "Cache proxied request": "Cacher la requête avec proxy",
318
+ "No cache": "Pas de cache",
319
+ "Popup": "Popup",
320
+ "Popup (large)": "Popup (grande)",
321
+ "Popup content style": "Gabarit prédéfini de popup",
322
+ "Popup shape": "Forme de popup",
323
+ "Skipping unknown geometry.type: {type}": "Type de géométrie inconnu ignoré: {type}",
324
+ "Optional.": "Facultatif",
325
+ "Paste your data here": "Collez vos données ici",
326
+ "Please save the map first": "Vous devez d'abord enregistrer la carte",
327
+ "Feature identifier key": "Clé unique d'un élément",
328
+ "Open current feature on load": "Ouvrir l'élément courant au chargement",
329
+ "Permalink": "Permalien",
330
+ "The name of the property to use as feature unique identifier.": "Nom de la propriété utilisée pour identifier un élément de façon unique",
331
+ "Do you want to display caption menus?": "Afficher les menus dans la légende ?",
332
+ "Example: key1,key2,key3": "Exemple: clé1,clé2,clé3",
333
+ "Invalid latitude or longitude": "Latitude ou longitude invalide",
334
+ "Invalide property name: {name}": "Nom de propriété invalide: {name}",
335
+ "Permanent credits": "Crédits permanents",
336
+ "Permanent credits background": "Afficher un fond pour le crédit permanent",
337
+ "Select data": "Sélectionner les données",
338
+ "Will be permanently visible in the bottom left corner of the map": "Afficher en permanence au coin en bas à gauche de la carte",
339
+ "{area} acres": "{area} acres",
340
+ "{area} ha": "{area} ha",
341
+ "{area} m²": "{area} m²",
342
+ "{area} mi²": "{area} mi²",
343
+ "{area} yd²": "{area} yd²",
344
+ "{distance} NM": "{distance} MN",
345
+ "{distance} km": "{distance} km",
346
+ "{distance} m": "{distance} m",
347
+ "{distance} miles": "{distance} miles",
348
+ "{distance} yd": "{distance} yd",
349
+ " (area: {measure})": "(surface: {measure})",
350
+ " (length: {measure})": "(longueur: {measure})",
351
+ "Animated transitions": "Transitions animées",
352
+ "Background overlay url": "URL de fond transparent",
353
+ "Custom overlay": "Fond transparent",
354
+ "Display the star map button": "Afficher le bouton pour mettre une carte en favori",
355
+ "Error in the overlay URL": "URL du fond de carte invalide",
356
+ "Map has been starred": "La carte a été ajoutée aux favoris",
357
+ "Map has been unstarred": "La carte a été supprimée des favoris",
358
+ "Opacity": "Transparence",
359
+ "Star this map": "Mettre la carte en favori",
360
+ "Symbol can be either a unicode character or an URL. You can use feature properties as variables: ex.: with \"http://myserver.org/images/{name}.png\", the {name} variable will be replaced by the \"name\" value of each marker.": "Utilisez soit un caractère unique soit une URL. Vous pouvez utiliser des propriétés des marqueurs comme variables : par exemple avec \"http://myserver.org/images/{name}.png\", la variable {name} sera remplacée par la valeur de \"name\" de chacun des marqueurs.",
361
+ "Direct link": "Lien",
362
+ "The zoom and center have been modified.": "Le niveau de zoom et le centre ont été modifiés.",
363
+ "Congratulations, your map has been created!": "Félicitations, votre carte a bien été créée !",
364
+ "Copy link": "Copier le lien",
365
+ "Email": "Courriel",
366
+ "Secret edit link copied to clipboard!": "Lien d'édition secret copié dans le presse-papier!",
367
+ "Send me the link": "Envoyer le lien",
368
+ "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:": "Votre carte a été créée! Comme vous n'êtes pas identifié, voici le lien secret pour éditer la carte à l'avenir, conservez-le précieusement:",
369
+ "Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "Liste de propriétés séparées par une virgule pour trier les éléments. Pour trier en descendant, ajouter un signe moins (-) devant. Ex.: maclé,-autreclé.",
370
+ "Toggle edit mode (⇧+Click)": "Alterner le mode édition (⇧+clic)",
371
+ "icon opacity": "Opacité de l'icône",
372
+ "*single star for italic*": "*simple astérisque pour italique*",
373
+ "--- for a horizontal rule": "--- pour un séparateur horizontal",
374
+ "The name of the property to use as feature label (eg.: \"nom\"). You can also use properties inside brackets to use more than one or mix with static content (eg.: \"{name} in {place}\")": "Nom de la propriété utilisée pour le libellé (ex.: \"nom\"). Il est possible d'utiliser des propriétés entre accolades pour en utiliser plusieurs ou ajouter du texte (ex.: \"{nom} à {lieu}\")",
375
+ "Comma separated list of properties to use for facet search (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key)": "Liste de propriétés séparées par des virgules pour calculer les facettes (ex.: macle,monautrecle). Pour définir un libellé, on peut l'ajouter après un | (ex.: macle|Ma Clé,monautrecle|Mon Autre Clé)",
376
+ "Default view": "Vue par défaut",
377
+ "Facet keys": "Clés pour les facettes",
378
+ "Facet search": "Recherche par facette",
379
+ "Feature properties": "Propriétés de l'élément",
380
+ "Issue reaching that URL (network problem or CORS protection): {url}": "Problème au chargement de cette URL (problème réseau ou protection CORS): {url}",
381
+ "Latest feature": "Dernier élément",
382
+ "No results for these facets": "Aucun résultat pour ces facettes",
383
+ "Saved center and zoom": "Centre et zoom enregistrés",
384
+ "User location": "Localisation de l'utilisateur",
385
+ "Visibility: {status}": "Visibilité: {status}",
386
+ "Fit all data": "Zoom sur les données",
387
+ "Verify remote URL": "Vérifier l'URL",
388
+ "Add": "Ajouter",
389
+ "Change": "Modifier",
390
+ "Powered by uMap": "Propulsé par uMap",
391
+ "Search": "Chercher",
392
+ "Datalayers": "Calques",
393
+ "Secret edit link:": "Lien d'édition secret :",
394
+ "Who can edit \"{layer}\"": "Qui peut modifier « {layer} »",
395
+ "Current map view": "Lister seulement les éléments visibles",
396
+ "Filter": "Filtrer",
397
+ "Choropleth": "Choroplèthe",
398
+ "Choropleth breakpoints": "Seuils choropleth",
399
+ "Choropleth classes": "Classes choropleth",
400
+ "Choropleth color palette": "Palettes de couleurs choropleth",
401
+ "Choropleth mode": "Mode choropleth",
402
+ "Choropleth property value": "Propriété choropleth",
403
+ "Comma separated list of numbers, including min and max values.": "Liste de nombres séparés par des virgules, y compris les valeurs minimale et maximale.",
404
+ "Equidistant": "Équidistant",
405
+ "Jenks-Fisher": "Jenks-Fisher",
406
+ "K-means": "K-moyennes",
407
+ "Manual": "Manuel",
408
+ "Number of desired classes (default 5)": "Nombre désiré de classes (par défaut 5)",
409
+ "Quantiles": "Quantiles",
410
+ "Show this layer in the caption": "Montrer ce calque dans la légende",
411
+ "Back to preview": "Voir l'aperçu",
412
+ "Drawing": "Modification",
413
+ "Edit the title of the map": "Modifier le titre de la carte",
414
+ "Go to the homepage": "Retour à la page d'accueil",
415
+ "Switch to edit mode": "Basculer en mode édition",
416
+ "Update who can see and edit the map": "Définir qui peut voir et modifier la carte",
417
+ "View": "Aperçu",
418
+ "Add image URL": "URL d'une image",
419
+ "Emoji & Character": "Emoji & texte",
420
+ "Generic": "Générique",
421
+ "Symbol": "Symbole",
422
+ "Type char or paste emoji": "Taper un caractère ou un émoji",
423
+ "URL": "URL",
424
+ "If false, the polygon or line will act as a part of the underlying map.": "Désactiver pour que le polygone ou la ligne ne réagisse plus aux intéractions",
425
+ "Save map": "Enregistrer la carte",
426
+ "Toggle edit mode": "Activer/désactiver le mode édition",
427
+ "All data and settings of the map": "Toutes les données et les propriétés de la carte",
428
+ "Embed and link options": "Intégration et partage",
429
+ "Go to \"{coords}\"": "Aller à \"{coords}\"",
430
+ "Link to view the map": "Lien vers la carte",
431
+ "No.": "Non.",
432
+ "Only visible layers' data": "Seules les données des calques visibles",
433
+ "Open share & download panel": "Ouvrir le panneau de partage",
434
+ "OpenStreetMap": "OpenStreetMap",
435
+ "See on OpenStreetMap": "Voir sur OpenStreetMap",
436
+ "Share and download": "Partager et télécharger",
437
+ "Share this link to open a customized map view": "Partager ce lien pour avoir une vue personnalisée",
438
+ "Short link": "Lien court",
439
+ "Street": "Rue",
440
+ "Type a place name or coordinates": "Entrer un lieu ou des coordonnées",
441
+ "copy": "copier",
442
+ "full backup": "sauvegarde complète",
443
+ "settings": "paramètres",
444
+ "{count} features in this layer": "{count} éléments sur ce calque"
445
+ }
446
+ L.registerLocale("fr", locale)
447
+ L.setLocale("fr")