umap-project 2.8.2__py3-none-any.whl → 2.9.0__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 (260) hide show
  1. umap/__init__.py +1 -1
  2. umap/admin.py +15 -2
  3. umap/asgi.py +12 -7
  4. umap/context_processors.py +1 -0
  5. umap/locale/br/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/br/LC_MESSAGES/django.po +111 -67
  7. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  8. umap/locale/cs_CZ/LC_MESSAGES/django.po +110 -66
  9. umap/locale/el/LC_MESSAGES/django.mo +0 -0
  10. umap/locale/el/LC_MESSAGES/django.po +129 -85
  11. umap/locale/en/LC_MESSAGES/django.po +103 -60
  12. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  13. umap/locale/es/LC_MESSAGES/django.po +114 -69
  14. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  15. umap/locale/fr/LC_MESSAGES/django.po +105 -61
  16. umap/locale/gl/LC_MESSAGES/django.mo +0 -0
  17. umap/locale/gl/LC_MESSAGES/django.po +216 -171
  18. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  19. umap/locale/it/LC_MESSAGES/django.po +142 -98
  20. umap/locale/nl/LC_MESSAGES/django.mo +0 -0
  21. umap/locale/nl/LC_MESSAGES/django.po +196 -151
  22. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  23. umap/locale/pt/LC_MESSAGES/django.po +115 -71
  24. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  25. umap/locale/zh_TW/LC_MESSAGES/django.po +109 -65
  26. umap/management/commands/empty_trash.py +12 -1
  27. umap/migrations/0026_datalayer_modified_at_datalayer_share_status.py +26 -0
  28. umap/models.py +43 -13
  29. umap/settings/base.py +5 -2
  30. umap/static/umap/base.css +5 -2
  31. umap/static/umap/content.css +2 -22
  32. umap/static/umap/css/bar.css +39 -10
  33. umap/static/umap/css/contextmenu.css +14 -2
  34. umap/static/umap/css/form.css +33 -39
  35. umap/static/umap/css/icon.css +47 -5
  36. umap/static/umap/css/panel.css +20 -2
  37. umap/static/umap/css/popup.css +0 -1
  38. umap/static/umap/css/tooltip.css +33 -31
  39. umap/static/umap/img/16-white.svg +5 -3
  40. umap/static/umap/img/16.svg +1 -1
  41. umap/static/umap/img/24-white.svg +17 -16
  42. umap/static/umap/img/24.svg +29 -18
  43. umap/static/umap/img/providers/bitbucket.png +0 -0
  44. umap/static/umap/img/providers/github.png +0 -0
  45. umap/static/umap/img/providers/keycloak.png +0 -0
  46. umap/static/umap/img/providers/openstreetmap-oauth2.png +0 -0
  47. umap/static/umap/img/providers/twitter-oauth2.png +0 -0
  48. umap/static/umap/img/source/16-white.svg +6 -4
  49. umap/static/umap/img/source/16.svg +1 -1
  50. umap/static/umap/img/source/24-white.svg +20 -18
  51. umap/static/umap/img/source/24.svg +30 -19
  52. umap/static/umap/js/components/alerts/alert.js +4 -1
  53. umap/static/umap/js/modules/browser.js +8 -8
  54. umap/static/umap/js/modules/caption.js +30 -7
  55. umap/static/umap/js/modules/data/features.js +101 -56
  56. umap/static/umap/js/modules/data/layer.js +108 -83
  57. umap/static/umap/js/modules/form/builder.js +242 -0
  58. umap/static/umap/js/modules/form/fields.js +1346 -0
  59. umap/static/umap/js/modules/formatter.js +9 -8
  60. umap/static/umap/js/modules/help.js +20 -24
  61. umap/static/umap/js/modules/importer.js +6 -3
  62. umap/static/umap/js/modules/permissions.js +11 -6
  63. umap/static/umap/js/modules/rendering/icon.js +5 -1
  64. umap/static/umap/js/modules/rendering/layers/classified.js +12 -8
  65. umap/static/umap/js/modules/rendering/layers/cluster.js +11 -1
  66. umap/static/umap/js/modules/rendering/map.js +1 -23
  67. umap/static/umap/js/modules/rendering/ui.js +20 -38
  68. umap/static/umap/js/modules/rules.js +3 -2
  69. umap/static/umap/js/modules/saving.js +5 -0
  70. umap/static/umap/js/modules/schema.js +8 -6
  71. umap/static/umap/js/modules/share.js +3 -3
  72. umap/static/umap/js/modules/sync/engine.js +56 -26
  73. umap/static/umap/js/modules/sync/updaters.js +15 -6
  74. umap/static/umap/js/modules/sync/websocket.js +50 -37
  75. umap/static/umap/js/modules/tableeditor.js +3 -2
  76. umap/static/umap/js/modules/ui/bar.js +101 -9
  77. umap/static/umap/js/modules/ui/base.js +7 -24
  78. umap/static/umap/js/modules/ui/contextmenu.js +9 -2
  79. umap/static/umap/js/modules/ui/panel.js +5 -1
  80. umap/static/umap/js/modules/ui/tooltip.js +19 -11
  81. umap/static/umap/js/modules/umap.js +121 -68
  82. umap/static/umap/js/modules/utils.js +196 -12
  83. umap/static/umap/js/umap.controls.js +11 -353
  84. umap/static/umap/locale/am_ET.js +17 -5
  85. umap/static/umap/locale/am_ET.json +17 -5
  86. umap/static/umap/locale/ar.js +17 -5
  87. umap/static/umap/locale/ar.json +17 -5
  88. umap/static/umap/locale/ast.js +17 -5
  89. umap/static/umap/locale/ast.json +17 -5
  90. umap/static/umap/locale/bg.js +17 -5
  91. umap/static/umap/locale/bg.json +17 -5
  92. umap/static/umap/locale/br.js +33 -20
  93. umap/static/umap/locale/br.json +33 -20
  94. umap/static/umap/locale/ca.js +17 -5
  95. umap/static/umap/locale/ca.json +17 -5
  96. umap/static/umap/locale/cs_CZ.js +15 -5
  97. umap/static/umap/locale/cs_CZ.json +15 -5
  98. umap/static/umap/locale/da.js +17 -5
  99. umap/static/umap/locale/da.json +17 -5
  100. umap/static/umap/locale/de.js +17 -5
  101. umap/static/umap/locale/de.json +17 -5
  102. umap/static/umap/locale/el.js +63 -51
  103. umap/static/umap/locale/el.json +63 -51
  104. umap/static/umap/locale/en.js +15 -5
  105. umap/static/umap/locale/en.json +15 -5
  106. umap/static/umap/locale/en_US.json +17 -5
  107. umap/static/umap/locale/es.js +25 -13
  108. umap/static/umap/locale/es.json +25 -13
  109. umap/static/umap/locale/et.js +17 -5
  110. umap/static/umap/locale/et.json +17 -5
  111. umap/static/umap/locale/eu.js +17 -5
  112. umap/static/umap/locale/eu.json +17 -5
  113. umap/static/umap/locale/fa_IR.js +17 -5
  114. umap/static/umap/locale/fa_IR.json +17 -5
  115. umap/static/umap/locale/fi.js +17 -5
  116. umap/static/umap/locale/fi.json +17 -5
  117. umap/static/umap/locale/fr.js +16 -6
  118. umap/static/umap/locale/fr.json +16 -6
  119. umap/static/umap/locale/gl.js +357 -345
  120. umap/static/umap/locale/gl.json +357 -345
  121. umap/static/umap/locale/he.js +17 -5
  122. umap/static/umap/locale/he.json +17 -5
  123. umap/static/umap/locale/hr.js +17 -5
  124. umap/static/umap/locale/hr.json +17 -5
  125. umap/static/umap/locale/hu.js +14 -5
  126. umap/static/umap/locale/hu.json +14 -5
  127. umap/static/umap/locale/id.js +17 -5
  128. umap/static/umap/locale/id.json +17 -5
  129. umap/static/umap/locale/is.js +17 -5
  130. umap/static/umap/locale/is.json +17 -5
  131. umap/static/umap/locale/it.js +125 -113
  132. umap/static/umap/locale/it.json +125 -113
  133. umap/static/umap/locale/ja.js +17 -5
  134. umap/static/umap/locale/ja.json +17 -5
  135. umap/static/umap/locale/ko.js +17 -5
  136. umap/static/umap/locale/ko.json +17 -5
  137. umap/static/umap/locale/lt.js +17 -5
  138. umap/static/umap/locale/lt.json +17 -5
  139. umap/static/umap/locale/ms.js +17 -5
  140. umap/static/umap/locale/ms.json +17 -5
  141. umap/static/umap/locale/nl.js +132 -119
  142. umap/static/umap/locale/nl.json +132 -119
  143. umap/static/umap/locale/no.js +17 -5
  144. umap/static/umap/locale/no.json +17 -5
  145. umap/static/umap/locale/pl.js +17 -5
  146. umap/static/umap/locale/pl.json +17 -5
  147. umap/static/umap/locale/pl_PL.json +17 -5
  148. umap/static/umap/locale/pt.js +38 -25
  149. umap/static/umap/locale/pt.json +38 -25
  150. umap/static/umap/locale/pt_BR.js +17 -5
  151. umap/static/umap/locale/pt_BR.json +17 -5
  152. umap/static/umap/locale/pt_PT.js +17 -5
  153. umap/static/umap/locale/pt_PT.json +17 -5
  154. umap/static/umap/locale/ro.js +17 -5
  155. umap/static/umap/locale/ro.json +17 -5
  156. umap/static/umap/locale/ru.js +17 -5
  157. umap/static/umap/locale/ru.json +17 -5
  158. umap/static/umap/locale/sk_SK.js +17 -5
  159. umap/static/umap/locale/sk_SK.json +17 -5
  160. umap/static/umap/locale/sl.js +17 -5
  161. umap/static/umap/locale/sl.json +17 -5
  162. umap/static/umap/locale/sr.js +17 -5
  163. umap/static/umap/locale/sr.json +17 -5
  164. umap/static/umap/locale/sv.js +17 -5
  165. umap/static/umap/locale/sv.json +17 -5
  166. umap/static/umap/locale/th_TH.js +17 -5
  167. umap/static/umap/locale/th_TH.json +17 -5
  168. umap/static/umap/locale/tr.js +17 -5
  169. umap/static/umap/locale/tr.json +17 -5
  170. umap/static/umap/locale/uk_UA.js +17 -5
  171. umap/static/umap/locale/uk_UA.json +17 -5
  172. umap/static/umap/locale/vi.js +17 -5
  173. umap/static/umap/locale/vi.json +17 -5
  174. umap/static/umap/locale/vi_VN.json +17 -5
  175. umap/static/umap/locale/zh.js +17 -5
  176. umap/static/umap/locale/zh.json +17 -5
  177. umap/static/umap/locale/zh_CN.json +17 -5
  178. umap/static/umap/locale/zh_TW.Big5.json +17 -5
  179. umap/static/umap/locale/zh_TW.js +15 -5
  180. umap/static/umap/locale/zh_TW.json +15 -5
  181. umap/static/umap/map.css +29 -76
  182. umap/static/umap/nav.css +6 -3
  183. umap/static/umap/unittests/utils.js +14 -0
  184. umap/static/umap/vars.css +3 -0
  185. umap/static/umap/vendors/dompurify/purify.es.js +138 -354
  186. umap/static/umap/vendors/dompurify/purify.es.mjs.map +1 -1
  187. umap/static/umap/vendors/editable/Leaflet.Editable.js +1 -0
  188. umap/sync/__init__.py +0 -0
  189. umap/sync/app.py +187 -0
  190. umap/sync/payloads.py +56 -0
  191. umap/templates/auth/user_detail.html +4 -0
  192. umap/templates/auth/user_form.html +9 -6
  193. umap/templates/auth/user_stars.html +4 -0
  194. umap/templates/base.html +1 -1
  195. umap/templates/registration/login.html +2 -5
  196. umap/templates/umap/about.html +5 -0
  197. umap/templates/umap/about_summary.html +2 -2
  198. umap/templates/umap/components/provider.html +8 -0
  199. umap/templates/umap/content_footer.html +1 -1
  200. umap/templates/umap/css.html +0 -2
  201. umap/templates/umap/js.html +0 -4
  202. umap/templates/umap/map_detail.html +1 -1
  203. umap/templates/umap/password_change.html +4 -0
  204. umap/templates/umap/password_change_done.html +4 -0
  205. umap/templates/umap/search.html +4 -0
  206. umap/templates/umap/search_bar.html +1 -0
  207. umap/templates/umap/team_confirm_delete.html +4 -0
  208. umap/templates/umap/team_detail.html +4 -0
  209. umap/templates/umap/team_form.html +4 -0
  210. umap/templates/umap/user_dashboard.html +1 -1
  211. umap/templates/umap/user_teams.html +4 -0
  212. umap/tests/base.py +3 -1
  213. umap/tests/integration/conftest.py +16 -23
  214. umap/tests/integration/test_anonymous_owned_map.py +2 -2
  215. umap/tests/integration/test_basics.py +4 -7
  216. umap/tests/integration/test_caption.py +1 -0
  217. umap/tests/integration/test_categorized_layer.py +4 -8
  218. umap/tests/integration/test_choropleth.py +1 -1
  219. umap/tests/integration/test_conditional_rules.py +3 -3
  220. umap/tests/integration/test_draw_polygon.py +14 -22
  221. umap/tests/integration/test_draw_polyline.py +6 -14
  222. umap/tests/integration/test_edit_datalayer.py +11 -11
  223. umap/tests/integration/test_edit_map.py +30 -4
  224. umap/tests/integration/test_edit_marker.py +5 -5
  225. umap/tests/integration/test_edit_polygon.py +6 -6
  226. umap/tests/integration/test_features_id_generation.py +2 -6
  227. umap/tests/integration/test_import.py +115 -29
  228. umap/tests/integration/test_optimistic_merge.py +1 -0
  229. umap/tests/integration/test_owned_map.py +1 -1
  230. umap/tests/integration/test_picto.py +8 -8
  231. umap/tests/integration/test_save.py +3 -2
  232. umap/tests/integration/test_star.py +13 -9
  233. umap/tests/integration/test_tableeditor.py +8 -7
  234. umap/tests/integration/test_view_marker.py +10 -0
  235. umap/tests/integration/test_websocket_sync.py +239 -64
  236. umap/tests/settings.py +2 -0
  237. umap/tests/test_datalayer.py +2 -3
  238. umap/tests/test_datalayer_views.py +20 -1
  239. umap/tests/test_empty_trash.py +10 -3
  240. umap/tests/test_map_views.py +11 -0
  241. umap/utils.py +27 -11
  242. umap/views.py +37 -6
  243. {umap_project-2.8.2.dist-info → umap_project-2.9.0.dist-info}/METADATA +22 -22
  244. {umap_project-2.8.2.dist-info → umap_project-2.9.0.dist-info}/RECORD +247 -248
  245. {umap_project-2.8.2.dist-info → umap_project-2.9.0.dist-info}/WHEEL +1 -1
  246. umap/management/commands/run_websocket_server.py +0 -23
  247. umap/settings/local_s3.py +0 -45
  248. umap/static/umap/bitbucket.png +0 -0
  249. umap/static/umap/github.png +0 -0
  250. umap/static/umap/js/umap.forms.js +0 -1242
  251. umap/static/umap/keycloak.png +0 -0
  252. umap/static/umap/openstreetmap.png +0 -0
  253. umap/static/umap/twitter.png +0 -0
  254. umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +0 -468
  255. umap/static/umap/vendors/toolbar/leaflet.toolbar.css +0 -1
  256. umap/static/umap/vendors/toolbar/leaflet.toolbar.js +0 -1
  257. umap/tests/test_websocket_server.py +0 -22
  258. umap/websocket_server.py +0 -202
  259. {umap_project-2.8.2.dist-info → umap_project-2.9.0.dist-info}/entry_points.txt +0 -0
  260. {umap_project-2.8.2.dist-info → umap_project-2.9.0.dist-info}/licenses/LICENSE +0 -0
@@ -6,13 +6,14 @@
6
6
  # Cees Geuze <info@cgid.nl>, 2020
7
7
  # danieldegroot2 <danieldegroot18@gmail.com>, 2022
8
8
  # danieldegroot2 <danieldegroot18@gmail.com>, 2022
9
+ # Gideon van Melle <translations@gvmelle.com>, 2025
9
10
  msgid ""
10
11
  msgstr ""
11
12
  "Project-Id-Version: uMap\n"
12
13
  "Report-Msgid-Bugs-To: \n"
13
- "POT-Creation-Date: 2024-12-24 08:39+0000\n"
14
+ "POT-Creation-Date: 2025-03-03 14:11+0000\n"
14
15
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
15
- "Last-Translator: danieldegroot2 <danieldegroot18@gmail.com>, 2022\n"
16
+ "Last-Translator: Gideon van Melle <translations@gvmelle.com>, 2025\n"
16
17
  "Language-Team: Dutch (http://app.transifex.com/openstreetmap/umap/language/nl/)\n"
17
18
  "MIME-Version: 1.0\n"
18
19
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -22,11 +23,11 @@ msgstr ""
22
23
 
23
24
  #: admin.py:16
24
25
  msgid "CSV Export"
25
- msgstr ""
26
+ msgstr "CSV Export"
26
27
 
27
28
  #: decorators.py:60
28
29
  msgid "This map is not publicly available"
29
- msgstr ""
30
+ msgstr "Deze kaart is niet openbaar beschikbaar"
30
31
 
31
32
  #: middleware.py:13
32
33
  msgid "Site is readonly for maintenance"
@@ -36,7 +37,7 @@ msgstr "Site is 'alleen lezen' wegens onderhoud"
36
37
  msgid "name"
37
38
  msgstr "naam"
38
39
 
39
- #: models.py:62 models.py:475
40
+ #: models.py:62 models.py:485
40
41
  msgid "description"
41
42
  msgstr "omschrijving"
42
43
 
@@ -56,45 +57,45 @@ msgstr "URL-sjabloon met OSM tegel-formaat"
56
57
  msgid "Order of the tilelayers in the edit box"
57
58
  msgstr "Volgorde van de tegel-lagen in het bewerkingsvak."
58
59
 
59
- #: models.py:175 models.py:469
60
+ #: models.py:175 models.py:479
60
61
  msgid "Only editable with secret edit link"
61
62
  msgstr "Alleen te bewerken met een geheime link"
62
63
 
63
- #: models.py:176 models.py:470
64
+ #: models.py:176 models.py:480
64
65
  msgid "Everyone can edit"
65
66
  msgstr "Iedereen kan wijzigingen maken"
66
67
 
67
- #: models.py:179 models.py:463
68
+ #: models.py:179 models.py:473
68
69
  msgid "Everyone"
69
- msgstr ""
70
+ msgstr "Iedereen"
70
71
 
71
- #: models.py:180 models.py:189 models.py:464
72
+ #: models.py:180 models.py:189 models.py:474
72
73
  msgid "Editors and team only"
73
- msgstr ""
74
+ msgstr "Alleen redacteuren en team"
74
75
 
75
- #: models.py:181 models.py:465
76
+ #: models.py:181 models.py:475
76
77
  msgid "Owner only"
77
- msgstr ""
78
+ msgstr "Alleen eigenaar"
78
79
 
79
80
  #: models.py:184
80
81
  msgid "Draft (private)"
81
- msgstr ""
82
+ msgstr "Ontwerp (privé)"
82
83
 
83
84
  #: models.py:185
84
85
  msgid "Everyone (public)"
85
- msgstr ""
86
+ msgstr "Iedereen (openbaar)"
86
87
 
87
88
  #: models.py:188
88
89
  msgid "Anyone with link"
89
- msgstr ""
90
+ msgstr "Iedereen met een link"
90
91
 
91
92
  #: models.py:190
92
93
  msgid "Blocked"
93
- msgstr ""
94
+ msgstr "geblokkeerd"
94
95
 
95
- #: models.py:191
96
+ #: models.py:191 models.py:469
96
97
  msgid "Deleted"
97
- msgstr ""
98
+ msgstr "Verwijderd"
98
99
 
99
100
  #: models.py:194
100
101
  msgid "center"
@@ -130,33 +131,33 @@ msgstr "editors"
130
131
 
131
132
  #: models.py:223
132
133
  msgid "team"
133
- msgstr ""
134
+ msgstr "team"
134
135
 
135
- #: models.py:229 models.py:491
136
+ #: models.py:229 models.py:501
136
137
  msgid "edit status"
137
138
  msgstr "wijzig status"
138
139
 
139
- #: models.py:234
140
+ #: models.py:234 models.py:506
140
141
  msgid "share status"
141
142
  msgstr "deel status"
142
143
 
143
- #: models.py:237 models.py:486
144
+ #: models.py:237 models.py:496
144
145
  msgid "settings"
145
146
  msgstr "instellingen"
146
147
 
147
- #: models.py:402
148
+ #: models.py:407
148
149
  msgid "Clone of"
149
150
  msgstr "Kopie van"
150
151
 
151
- #: models.py:462 models.py:468
152
+ #: models.py:468 models.py:472 models.py:478
152
153
  msgid "Inherit"
153
- msgstr ""
154
+ msgstr "overerven"
154
155
 
155
- #: models.py:481
156
+ #: models.py:491
156
157
  msgid "display on load"
157
158
  msgstr "toon tijdens laden"
158
159
 
159
- #: models.py:482
160
+ #: models.py:492
160
161
  msgid "Display this layer on load."
161
162
  msgstr "Toon deze laag tijdens laden."
162
163
 
@@ -165,59 +166,73 @@ msgid ""
165
166
  "<a href=\"https://discover.umap-project.org/support/faq/#map-statuses\" "
166
167
  "target=\"_blank\">Find out here the documentation</a> on how to manage map’s"
167
168
  " permissions."
168
- msgstr ""
169
+ msgstr "<a href=\"https://discover.umap-project.org/support/faq/#map-statuses\" target=\"_blank\">Ontdek hier de documentatie</a> over het beheren van de machtigingen van Map."
169
170
 
170
171
  #: templates/403.html:10 templates/404.html:8
171
172
  msgid "← Go to the homepage"
172
- msgstr ""
173
+ msgstr "← Ga naar de thuispagina"
173
174
 
174
175
  #: templates/404.html:7
175
176
  msgid "404 Page Not Found"
176
- msgstr ""
177
+ msgstr "404 Pagina niet gevonden"
178
+
179
+ #: templates/auth/user_detail.html:6
180
+ #, python-format
181
+ msgid "%(current_user)s’s maps"
182
+ msgstr "%(current_user)s’s kaarten"
177
183
 
178
- #: templates/auth/user_detail.html:8
184
+ #: templates/auth/user_detail.html:12
179
185
  #, python-format
180
186
  msgid "Browse %(current_user)s's maps"
181
187
  msgstr "Toon %(current_user)s's kaarten"
182
188
 
183
- #: templates/auth/user_detail.html:17
189
+ #: templates/auth/user_detail.html:21
184
190
  #, python-format
185
191
  msgid "%(current_user)s has no maps."
186
192
  msgstr "%(current_user)sheeft geen kaarten."
187
193
 
188
- #: templates/auth/user_form.html:21 templates/umap/team_form.html:21
194
+ #: templates/auth/user_form.html:6
195
+ msgid "My Profile"
196
+ msgstr "Mijn profiel"
197
+
198
+ #: templates/auth/user_form.html:24 templates/umap/team_form.html:25
189
199
  msgid "Save"
190
- msgstr ""
200
+ msgstr "Opslaan"
191
201
 
192
- #: templates/auth/user_form.html:27
202
+ #: templates/auth/user_form.html:30
193
203
  msgid "Your current providers"
194
- msgstr ""
204
+ msgstr "Je huidige providers"
195
205
 
196
- #: templates/auth/user_form.html:39
206
+ #: templates/auth/user_form.html:44
197
207
  msgid "Connect to another provider"
198
- msgstr ""
208
+ msgstr "Verbinding maken met een andere provider"
199
209
 
200
- #: templates/auth/user_form.html:42
210
+ #: templates/auth/user_form.html:47
201
211
  msgid ""
202
212
  "It's a good habit to connect your account to more than one provider, in case"
203
213
  " one provider becomes unavailable, temporarily or even permanently."
204
- msgstr ""
214
+ msgstr "Het is een goede gewoonte om uw account aan meer dan één provider te koppelen, voor het geval een provider tijdelijk of zelfs permanent niet beschikbaar is."
215
+
216
+ #: templates/auth/user_stars.html:6
217
+ #, python-format
218
+ msgid "%(current_user)s’s starred maps"
219
+ msgstr "%(current_user)s’s Kaarten met ster"
205
220
 
206
- #: templates/auth/user_stars.html:8
221
+ #: templates/auth/user_stars.html:12
207
222
  #, python-format
208
223
  msgid "Browse %(current_user)s's starred maps"
209
- msgstr ""
224
+ msgstr "Browse %(current_user)s's Kaarten met ster"
210
225
 
211
- #: templates/auth/user_stars.html:17
226
+ #: templates/auth/user_stars.html:21
212
227
  #, python-format
213
228
  msgid "%(current_user)s has no starred maps yet."
214
- msgstr ""
229
+ msgstr "%(current_user)s Heeft nog geen kaarten met ster."
215
230
 
216
231
  #: templates/base.html:13
217
232
  msgid ""
218
233
  "uMap lets you create maps with OpenStreetMap layers in a minute and embed "
219
234
  "them in your site."
220
- msgstr ""
235
+ msgstr "Met uMap kunt u in één minuut kaarten maken met OpenStreetMap-lagen en deze in uw site insluiten."
221
236
 
222
237
  #: templates/registration/login.html:6 templates/registration/login.html:46
223
238
  msgid "Login"
@@ -225,11 +240,11 @@ msgstr "Inloggen"
225
240
 
226
241
  #: templates/registration/login.html:22
227
242
  msgid "To save and easily find your maps, identify yourself."
228
- msgstr ""
243
+ msgstr "Identificeer uzelf om uw kaarten op te slaan en gemakkelijk terug te vinden."
229
244
 
230
245
  #: templates/registration/login.html:25
231
246
  msgid "Please log in with your account:"
232
- msgstr ""
247
+ msgstr "Log in met uw account:"
233
248
 
234
249
  #: templates/registration/login.html:42
235
250
  msgid "Username"
@@ -241,7 +256,11 @@ msgstr "Wachtwoord"
241
256
 
242
257
  #: templates/registration/login.html:52
243
258
  msgid "Please choose a provider:"
244
- msgstr ""
259
+ msgstr "Kies een provider:"
260
+
261
+ #: templates/umap/about.html:5 templates/umap/navigation.html:22
262
+ msgid "About"
263
+ msgstr "Over"
245
264
 
246
265
  #: templates/umap/about_summary.html:12
247
266
  #, python-format
@@ -296,7 +315,7 @@ msgstr "Speel met de demo"
296
315
  #: templates/umap/components/alerts/alert.html:66
297
316
  #: templates/umap/components/alerts/alert.html:94
298
317
  msgid "Close"
299
- msgstr ""
318
+ msgstr "Afsluiten"
300
319
 
301
320
  #: templates/umap/components/alerts/alert.html:32
302
321
  #, python-format
@@ -304,45 +323,45 @@ msgid ""
304
323
  "Pro-tip: to easily find back your maps, <a href=\"%(login_url)s\" "
305
324
  "target=\"_blank\">create an account</a> or <a href=\"%(login_url)s\" "
306
325
  "target=\"_blank\">log in</a>."
307
- msgstr ""
326
+ msgstr "Pro-tip: om je kaarten gemakkelijk terug te vinden, <a href=\"%(login_url)s\" target=\"_blank\">maak een account aan</a> of <a href=\"%(login_url)s\" target=\"_blank\">log in</a>."
308
327
 
309
328
  #: templates/umap/components/alerts/alert.html:37
310
329
  msgid "Here is your secret link to edit the map, please keep it safe:"
311
- msgstr ""
330
+ msgstr "Hier is je geheime link om de kaart te bewerken, houd deze alsjeblieft veilig:"
312
331
 
313
332
  #: templates/umap/components/alerts/alert.html:41
314
333
  msgid "Copy link"
315
- msgstr ""
334
+ msgstr "Kopieer link"
316
335
 
317
336
  #: templates/umap/components/alerts/alert.html:48
318
337
  msgid "Enter your email address to receive the secret link:"
319
- msgstr ""
338
+ msgstr "Voer je e-mailadres in om de geheime link te ontvangen:"
320
339
 
321
340
  #: templates/umap/components/alerts/alert.html:54
322
341
  msgid "Email"
323
- msgstr ""
342
+ msgstr "E-mail"
324
343
 
325
344
  #: templates/umap/components/alerts/alert.html:57
326
345
  msgid "Send me the link"
327
- msgstr ""
346
+ msgstr "Stuur mij de link"
328
347
 
329
348
  #: templates/umap/components/alerts/alert.html:81
330
349
  msgid "See their edits in another tab"
331
- msgstr ""
350
+ msgstr "Bekijk hun bewerkingen in een ander tabblad"
332
351
 
333
352
  #: templates/umap/components/alerts/alert.html:84
334
353
  msgid "Keep your changes and loose theirs"
335
- msgstr ""
354
+ msgstr "Bewaar uw wijzigingen en verlies die van hen"
336
355
 
337
356
  #: templates/umap/components/alerts/alert.html:87
338
357
  msgid "Keep their changes and loose yours"
339
- msgstr ""
358
+ msgstr "Behoud hun wijzigingen en verlies de jouwe"
340
359
 
341
360
  #: templates/umap/content.html:26
342
361
  msgid ""
343
362
  "This instance of uMap is currently in read only mode, no creation/edit is "
344
363
  "allowed."
345
- msgstr ""
364
+ msgstr "Deze instantie van uMap bevindt zich momenteel in de modus Alleen-lezen, aanmaken/bewerken is niet toegestaan."
346
365
 
347
366
  #: templates/umap/content.html:34
348
367
  #, python-format
@@ -355,40 +374,40 @@ msgstr "Dit is een demo-versie, gebruikt voor tests en pre-rolling releases. Als
355
374
 
356
375
  #: templates/umap/content_footer.html:5
357
376
  msgid "An OpenStreetMap project"
358
- msgstr ""
377
+ msgstr "Een OpenStreetMap-project"
359
378
 
360
379
  #: templates/umap/content_footer.html:6
361
380
  msgid "version"
362
- msgstr ""
381
+ msgstr "versie"
363
382
 
364
383
  #: templates/umap/content_footer.html:7
365
384
  msgid "Hosted by"
366
- msgstr ""
385
+ msgstr "Hosted door"
367
386
 
368
387
  #: templates/umap/content_footer.html:8
369
388
  msgid "Contact"
370
- msgstr ""
389
+ msgstr "Contact"
371
390
 
372
391
  #: templates/umap/content_footer.html:9 templates/umap/navigation.html:25
373
392
  msgid "Help"
374
- msgstr ""
393
+ msgstr "Hulp"
375
394
 
376
395
  #: templates/umap/dashboard_menu.html:6
377
396
  #, python-format
378
397
  msgid "My Maps (%(count)s)"
379
- msgstr ""
398
+ msgstr "Mijn kaarten (%(count)s)"
380
399
 
381
400
  #: templates/umap/dashboard_menu.html:8
382
401
  msgid "My Maps"
383
- msgstr ""
402
+ msgstr "Mijn kaarten"
384
403
 
385
404
  #: templates/umap/dashboard_menu.html:12
386
405
  msgid "My profile"
387
- msgstr ""
406
+ msgstr "Mijn profiel"
388
407
 
389
408
  #: templates/umap/dashboard_menu.html:15
390
409
  msgid "My teams"
391
- msgstr ""
410
+ msgstr "Mijn teams"
392
411
 
393
412
  #: templates/umap/home.html:14
394
413
  msgid "Map of the uMaps"
@@ -410,97 +429,97 @@ msgstr "door"
410
429
  msgid "More"
411
430
  msgstr "Meer"
412
431
 
413
- #: templates/umap/map_table.html:8 templates/umap/user_teams.html:14
432
+ #: templates/umap/map_table.html:8 templates/umap/user_teams.html:18
414
433
  msgid "Name"
415
- msgstr ""
434
+ msgstr "Naam"
416
435
 
417
436
  #: templates/umap/map_table.html:11
418
437
  msgid "Preview"
419
- msgstr ""
438
+ msgstr "Voorbeeld"
420
439
 
421
440
  #: templates/umap/map_table.html:14
422
441
  msgid "Who can see"
423
- msgstr ""
442
+ msgstr "Wie kan bekijken"
424
443
 
425
444
  #: templates/umap/map_table.html:17
426
445
  msgid "Who can edit"
427
- msgstr ""
446
+ msgstr "Wie kan bewerken"
428
447
 
429
448
  #: templates/umap/map_table.html:20
430
449
  msgid "Last save"
431
- msgstr ""
450
+ msgstr "Laatst opgeslagen"
432
451
 
433
452
  #: templates/umap/map_table.html:23
434
453
  msgid "Owner"
435
- msgstr ""
454
+ msgstr "Eigenaar"
436
455
 
437
- #: templates/umap/map_table.html:26 templates/umap/user_teams.html:20
456
+ #: templates/umap/map_table.html:26 templates/umap/user_teams.html:24
438
457
  msgid "Actions"
439
- msgstr ""
458
+ msgstr "Acties"
440
459
 
441
460
  #: templates/umap/map_table.html:41 templates/umap/map_table.html:43
442
461
  msgid "Open preview"
443
- msgstr ""
462
+ msgstr "Open Voorbeeld"
444
463
 
445
464
  #: templates/umap/map_table.html:72 templates/umap/map_table.html:74
446
465
  msgid "Share"
447
- msgstr ""
466
+ msgstr "Delen"
448
467
 
449
468
  #: templates/umap/map_table.html:78 templates/umap/map_table.html:80
450
- #: templates/umap/user_teams.html:38 templates/umap/user_teams.html:40
469
+ #: templates/umap/user_teams.html:42 templates/umap/user_teams.html:44
451
470
  msgid "Edit"
452
- msgstr ""
471
+ msgstr "Bewerken"
453
472
 
454
473
  #: templates/umap/map_table.html:84 templates/umap/map_table.html:86
455
474
  msgid "Download"
456
- msgstr ""
475
+ msgstr "Downloaden"
457
476
 
458
477
  #: templates/umap/map_table.html:90 templates/umap/map_table.html:92
459
478
  msgid "Clone"
460
- msgstr ""
479
+ msgstr "Klonen"
461
480
 
462
481
  #: templates/umap/map_table.html:101 templates/umap/map_table.html:103
463
482
  msgid "Delete"
464
- msgstr ""
483
+ msgstr "Verwijderen"
465
484
 
466
485
  #: templates/umap/map_table.html:117
467
486
  msgid "first"
468
- msgstr ""
487
+ msgstr "eerste"
469
488
 
470
489
  #: templates/umap/map_table.html:118
471
490
  msgid "previous"
472
- msgstr ""
491
+ msgstr "vorige"
473
492
 
474
493
  #: templates/umap/map_table.html:126
475
494
  #, python-format
476
495
  msgid "Page %(maps_number)s of %(num_pages)s"
477
- msgstr ""
496
+ msgstr "Pagina %(maps_number)s van %(num_pages)s"
478
497
 
479
498
  #: templates/umap/map_table.html:131
480
499
  msgid "next"
481
- msgstr ""
500
+ msgstr "volgende"
482
501
 
483
502
  #: templates/umap/map_table.html:132
484
503
  msgid "last"
485
- msgstr ""
504
+ msgstr "laatste"
486
505
 
487
506
  #: templates/umap/map_table.html:140
488
507
  #, python-format
489
508
  msgid "Lines per page: %(per_page)s"
490
- msgstr ""
509
+ msgstr "Regels per pagina: %(per_page)s"
491
510
 
492
511
  #: templates/umap/map_table.html:145
493
512
  #, python-format
494
513
  msgid "%(count)s maps"
495
- msgstr ""
514
+ msgstr "%(count)s kaarten"
496
515
 
497
516
  #: templates/umap/navigation.html:11 templates/umap/user_dashboard.html:6
498
517
  msgid "My Dashboard"
499
- msgstr ""
518
+ msgstr "Mijn Dashboard"
500
519
 
501
520
  #: templates/umap/navigation.html:14
502
521
  msgid "Starred maps"
503
- msgstr ""
522
+ msgstr "Kaarten met ster"
504
523
 
505
524
  #: templates/umap/navigation.html:18
506
525
  msgid "Log in"
@@ -510,10 +529,6 @@ msgstr "Inloggen"
510
529
  msgid "Sign in"
511
530
  msgstr "Aanmelden"
512
531
 
513
- #: templates/umap/navigation.html:22
514
- msgid "About"
515
- msgstr "Over"
516
-
517
532
  #: templates/umap/navigation.html:30
518
533
  msgid "Change password"
519
534
  msgstr "Wijzig wachtwoord"
@@ -522,170 +537,200 @@ msgstr "Wijzig wachtwoord"
522
537
  msgid "Log out"
523
538
  msgstr "Uitloggen"
524
539
 
525
- #: templates/umap/password_change.html:7
540
+ #: templates/umap/password_change.html:6
541
+ #: templates/umap/password_change.html:11
526
542
  msgid "Password change"
527
543
  msgstr "Wachtwoord wijziging"
528
544
 
529
- #: templates/umap/password_change.html:10
545
+ #: templates/umap/password_change.html:14
530
546
  msgid ""
531
547
  "Please enter your old password, for security's sake, and then enter your new"
532
548
  " password twice so we can verify you typed it in correctly."
533
549
  msgstr "Vul uw oude wachtwoord in -om veiligheidsredenen- en vul daarna tweemaal uw nieuwe wachtwoord in, zodat we zeker weten dat u het correct hebt ingevoerd."
534
550
 
535
- #: templates/umap/password_change.html:17
551
+ #: templates/umap/password_change.html:21
536
552
  msgid "Old password"
537
553
  msgstr "Oude wachtwoord"
538
554
 
539
- #: templates/umap/password_change.html:22
555
+ #: templates/umap/password_change.html:26
540
556
  msgid "New password"
541
557
  msgstr "Nieuwe wachtwoord"
542
558
 
543
- #: templates/umap/password_change.html:26
559
+ #: templates/umap/password_change.html:30
544
560
  msgid "New password confirmation"
545
561
  msgstr "Bevestig nieuwe wachtwoord"
546
562
 
547
- #: templates/umap/password_change.html:27
563
+ #: templates/umap/password_change.html:31
548
564
  msgid "Change my password"
549
565
  msgstr "Wijzig mijn wachtwoord"
550
566
 
551
- #: templates/umap/password_change_done.html:7
567
+ #: templates/umap/password_change_done.html:6
568
+ #: templates/umap/password_change_done.html:11
552
569
  msgid "Password change successful"
553
570
  msgstr "Wachtwoord wijzigen geslaagd"
554
571
 
555
- #: templates/umap/password_change_done.html:10
572
+ #: templates/umap/password_change_done.html:14
556
573
  msgid "Your password was changed."
557
574
  msgstr "Uw wachtwoord is gewijzigd."
558
575
 
559
- #: templates/umap/search.html:15
576
+ #: templates/umap/search.html:6
577
+ msgid "Explore maps"
578
+ msgstr "Kaarten verkennen"
579
+
580
+ #: templates/umap/search.html:19
560
581
  #, python-format
561
582
  msgid "%(count)s map found:"
562
583
  msgid_plural "%(count)s maps found:"
563
- msgstr[0] ""
564
- msgstr[1] ""
584
+ msgstr[0] "%(count)s kaarten gevonden:"
585
+ msgstr[1] "%(count)s kaarten gevonden:"
565
586
 
566
- #: templates/umap/search.html:24
587
+ #: templates/umap/search.html:28
567
588
  msgid "No map found."
568
- msgstr ""
589
+ msgstr "Geen kaart gevonden."
569
590
 
570
- #: templates/umap/search.html:29
591
+ #: templates/umap/search.html:33
571
592
  msgid "Latest created maps"
572
- msgstr ""
593
+ msgstr "Laatste gemaakte kaarten"
573
594
 
574
595
  #: templates/umap/search_bar.html:4
575
596
  msgid "Search maps"
576
597
  msgstr "Zoek kaarten"
577
598
 
578
- #: templates/umap/search_bar.html:15
599
+ #: templates/umap/search_bar.html:16
579
600
  msgid "Search"
580
601
  msgstr "Zoeken"
581
602
 
582
- #: templates/umap/team_detail.html:10
603
+ #: templates/umap/team_confirm_delete.html:6
604
+ msgid "Team deletion"
605
+ msgstr "Team verwijdering"
606
+
607
+ #: templates/umap/team_detail.html:6
608
+ #, python-format
609
+ msgid "%(current_team)s’s maps"
610
+ msgstr "%(current_team)s’s kaarten"
611
+
612
+ #: templates/umap/team_detail.html:14
583
613
  #, python-format
584
614
  msgid "Browse %(current_team)s's maps"
585
- msgstr ""
615
+ msgstr "Browse %(current_team)s's kaarten"
586
616
 
587
- #: templates/umap/team_detail.html:22
617
+ #: templates/umap/team_detail.html:26
588
618
  #, python-format
589
619
  msgid "%(current_team)s has no public maps."
590
- msgstr ""
620
+ msgstr "%(current_team)s Heeft geen openbare kaarten."
591
621
 
592
- #: templates/umap/team_form.html:24
622
+ #: templates/umap/team_form.html:6
623
+ msgid "Create or edit a team"
624
+ msgstr "Maak of bewerk een team"
625
+
626
+ #: templates/umap/team_form.html:28
593
627
  msgid "Delete this team"
594
- msgstr ""
628
+ msgstr "Verwijder dit team"
595
629
 
596
- #: templates/umap/team_form.html:47
630
+ #: templates/umap/team_form.html:51
597
631
  msgid "Add user"
598
- msgstr ""
632
+ msgstr "Gebruiker toevoegen"
599
633
 
600
634
  #: templates/umap/user_dashboard.html:9 templates/umap/user_dashboard.html:25
601
635
  msgid "Search my maps"
602
- msgstr ""
636
+ msgstr "Doorzoek mijn kaarten"
603
637
 
604
638
  #: templates/umap/user_dashboard.html:17 templates/umap/user_dashboard.html:22
605
639
  msgid "Map’s title"
606
- msgstr ""
640
+ msgstr "Titel van de kaart"
607
641
 
608
642
  #: templates/umap/user_dashboard.html:30
609
643
  #, python-format
610
644
  msgid "Download %(count)s maps"
611
- msgstr ""
645
+ msgstr "Download %(count)s kaarten"
612
646
 
613
647
  #: templates/umap/user_dashboard.html:40
614
648
  msgid "You have no map yet."
615
- msgstr ""
649
+ msgstr "Je hebt nog geen kaart."
616
650
 
617
- #: templates/umap/user_teams.html:17
651
+ #: templates/umap/user_teams.html:6
652
+ msgid "My Teams"
653
+ msgstr "Mijn Teams"
654
+
655
+ #: templates/umap/user_teams.html:21
618
656
  msgid "Users"
619
- msgstr ""
657
+ msgstr "Gebruikers"
620
658
 
621
- #: templates/umap/user_teams.html:48
659
+ #: templates/umap/user_teams.html:52
622
660
  msgid "New team"
623
- msgstr ""
661
+ msgstr "Nieuw Team"
624
662
 
625
663
  #: views.py:234
626
664
  msgid "Cannot delete a team with more than one member"
627
- msgstr ""
665
+ msgstr "Kan een team met meer dan één lid niet verwijderen"
628
666
 
629
667
  #: views.py:238
630
668
  #, python-format
631
669
  msgid "Team “%(name)s” has been deleted"
632
- msgstr ""
670
+ msgstr "Team “%(name)s” is verwijderd"
633
671
 
634
672
  #: views.py:442
635
673
  msgid "View the map"
636
674
  msgstr "Bekijk de kaart"
637
675
 
638
- #: views.py:825
676
+ #: views.py:838
639
677
  msgid "See full screen"
640
- msgstr ""
678
+ msgstr "Volledig scherm weergeven"
641
679
 
642
- #: views.py:968
680
+ #: views.py:981
643
681
  msgid "Map editors updated with success!"
644
682
  msgstr "Kaarteditors met succes bijgewerkt!"
645
683
 
646
- #: views.py:1004
684
+ #: views.py:1017
647
685
  #, python-format
648
686
  msgid "The uMap edit link for your map: %(map_name)s"
649
- msgstr ""
687
+ msgstr "De uMap-bewerkingslink voor uw kaart: %(map_name)s"
650
688
 
651
- #: views.py:1007
689
+ #: views.py:1020
652
690
  #, python-format
653
691
  msgid "Here is your secret edit link: %(link)s"
654
- msgstr ""
692
+ msgstr "Hier is je geheime bewerkingslink: %(link)s"
655
693
 
656
- #: views.py:1014
694
+ #: views.py:1027
657
695
  #, python-format
658
696
  msgid "Can't send email to %(email)s"
659
- msgstr ""
697
+ msgstr "Kan geen e-mail verzenden naar %(email)s"
660
698
 
661
- #: views.py:1017
699
+ #: views.py:1030
662
700
  #, python-format
663
701
  msgid "Email sent to %(email)s"
664
- msgstr ""
702
+ msgstr "E-mail verzonden naar %(email)s"
665
703
 
666
- #: views.py:1028
704
+ #: views.py:1041
667
705
  msgid "Only its owner can delete the map."
668
706
  msgstr "Kaart kan alleen door eigenaar worden verwijderd."
669
707
 
670
- #: views.py:1031
708
+ #: views.py:1044
671
709
  msgid "Map successfully deleted."
672
- msgstr ""
710
+ msgstr "Kaart succesvol verwijderd."
673
711
 
674
- #: views.py:1057
712
+ #: views.py:1070
675
713
  #, python-format
676
714
  msgid ""
677
715
  "Your map has been cloned! If you want to edit this map from another "
678
716
  "computer, please use this link: %(anonymous_url)s"
679
717
  msgstr "Uw kaart is gekopieerd! Als u deze kaart wilt wijzigen vanaf een andere computer, gebruik dan deze link: %(anonymous_url)s"
680
718
 
681
- #: views.py:1062
719
+ #: views.py:1075
682
720
  msgid "Congratulations, your map has been cloned!"
683
721
  msgstr "Gefeliciteerd, uw kaart is gekopieerd!"
684
722
 
685
- #: views.py:1313
723
+ #: views.py:1329
686
724
  msgid "Layer successfully deleted."
687
725
  msgstr "Laag is verwijderd."
688
726
 
689
- #: views.py:1335
727
+ #: views.py:1351
690
728
  msgid "Permissions updated with success!"
691
- msgstr ""
729
+ msgstr "Machtigingen met succes bijgewerkt!"
730
+
731
+ #: views.py:1430
732
+ #, python-format
733
+ msgid ""
734
+ "Using “%(name)s” to authenticate is deprecated. Please configure another "
735
+ "provider in your profile page."
736
+ msgstr "Het gebruik van “%(name)s” om te verifiëren is afgeschaft. Configureer een andere provider op je profielpagina."