umap-project 3.0.6__py3-none-any.whl → 3.1.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.
- umap/__init__.py +1 -1
- umap/forms.py +1 -1
- umap/locale/br/LC_MESSAGES/django.mo +0 -0
- umap/locale/br/LC_MESSAGES/django.po +219 -72
- umap/locale/ca/LC_MESSAGES/django.mo +0 -0
- umap/locale/ca/LC_MESSAGES/django.po +286 -95
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +211 -65
- umap/locale/da/LC_MESSAGES/django.mo +0 -0
- umap/locale/da/LC_MESSAGES/django.po +394 -202
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +146 -75
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/el/LC_MESSAGES/django.po +125 -59
- umap/locale/en/LC_MESSAGES/django.po +124 -58
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +125 -59
- umap/locale/et/LC_MESSAGES/django.mo +0 -0
- umap/locale/et/LC_MESSAGES/django.po +210 -64
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.po +212 -65
- umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- umap/locale/fa_IR/LC_MESSAGES/django.po +286 -95
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +125 -59
- umap/locale/gl/LC_MESSAGES/django.mo +0 -0
- umap/locale/gl/LC_MESSAGES/django.po +212 -66
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +148 -78
- umap/locale/is/LC_MESSAGES/django.mo +0 -0
- umap/locale/is/LC_MESSAGES/django.po +130 -60
- umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap/locale/it/LC_MESSAGES/django.po +125 -59
- umap/locale/ms/LC_MESSAGES/django.mo +0 -0
- umap/locale/ms/LC_MESSAGES/django.po +289 -98
- umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- umap/locale/nl/LC_MESSAGES/django.po +128 -61
- umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- umap/locale/pl/LC_MESSAGES/django.po +287 -96
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +211 -65
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +212 -66
- umap/management/commands/migrate_to_S3.py +42 -20
- umap/management/commands/purge_old_versions.py +63 -0
- umap/management/commands/switch_user.py +52 -0
- umap/managers.py +29 -2
- umap/middleware.py +1 -1
- umap/migrations/0028_map_is_template.py +21 -0
- umap/models.py +14 -4
- umap/settings/base.py +22 -0
- umap/static/umap/base.css +4 -2
- umap/static/umap/content.css +1 -1
- umap/static/umap/css/dialog.css +5 -2
- umap/static/umap/css/form.css +19 -12
- umap/static/umap/css/icon.css +6 -0
- umap/static/umap/css/importers.css +4 -0
- umap/static/umap/css/panel.css +2 -0
- umap/static/umap/img/16-white.svg +5 -1
- umap/static/umap/img/16.svg +1 -1
- umap/static/umap/img/24-white.svg +3 -2
- umap/static/umap/img/24.svg +3 -4
- umap/static/umap/img/importers/opendata.svg +1 -0
- umap/static/umap/img/source/16-white.svg +8 -4
- umap/static/umap/img/source/16.svg +1 -1
- umap/static/umap/img/source/24-white.svg +5 -4
- umap/static/umap/img/source/24.svg +5 -6
- umap/static/umap/js/components/modal.js +27 -0
- umap/static/umap/js/modules/caption.js +4 -4
- umap/static/umap/js/modules/data/features.js +40 -4
- umap/static/umap/js/modules/data/layer.js +208 -138
- umap/static/umap/js/modules/form/builder.js +6 -14
- umap/static/umap/js/modules/form/fields.js +2 -2
- umap/static/umap/js/modules/help.js +11 -3
- umap/static/umap/js/modules/importer.js +7 -4
- umap/static/umap/js/modules/importers/opendata.js +142 -0
- umap/static/umap/js/modules/permissions.js +3 -3
- umap/static/umap/js/modules/rendering/controls.js +34 -2
- umap/static/umap/js/modules/rendering/icon.js +2 -2
- umap/static/umap/js/modules/rendering/layers/base.js +1 -1
- umap/static/umap/js/modules/rendering/layers/classified.js +55 -49
- umap/static/umap/js/modules/rendering/layers/cluster.js +16 -9
- umap/static/umap/js/modules/rendering/layers/heat.js +13 -11
- umap/static/umap/js/modules/rendering/map.js +5 -0
- umap/static/umap/js/modules/rendering/ui.js +23 -0
- umap/static/umap/js/modules/rules.js +24 -23
- umap/static/umap/js/modules/schema.js +60 -4
- umap/static/umap/js/modules/sync/updaters.js +7 -3
- umap/static/umap/js/modules/tableeditor.js +7 -30
- umap/static/umap/js/modules/templates.js +122 -0
- umap/static/umap/js/modules/ui/bar.js +13 -3
- umap/static/umap/js/modules/ui/panel.js +1 -1
- umap/static/umap/js/modules/umap.js +28 -13
- umap/static/umap/js/umap.controls.js +11 -4
- umap/static/umap/locale/br.js +51 -18
- umap/static/umap/locale/br.json +51 -18
- umap/static/umap/locale/da.js +343 -310
- umap/static/umap/locale/da.json +343 -310
- umap/static/umap/locale/de.js +40 -7
- umap/static/umap/locale/de.json +40 -7
- umap/static/umap/locale/el.js +31 -4
- umap/static/umap/locale/el.json +31 -4
- umap/static/umap/locale/en.js +33 -1
- umap/static/umap/locale/en.json +33 -1
- umap/static/umap/locale/es.js +37 -4
- umap/static/umap/locale/es.json +37 -4
- umap/static/umap/locale/fr.js +34 -1
- umap/static/umap/locale/fr.json +34 -1
- umap/static/umap/locale/hu.js +44 -17
- umap/static/umap/locale/hu.json +44 -17
- umap/static/umap/locale/it.js +74 -41
- umap/static/umap/locale/it.json +74 -41
- umap/static/umap/locale/nl.js +42 -9
- umap/static/umap/locale/nl.json +42 -9
- umap/static/umap/map.css +3 -23
- umap/static/umap/vendors/textpath/leaflet.textpath.js +184 -0
- umap/storage/fs.py +19 -9
- umap/templates/umap/dashboard_menu.html +5 -0
- umap/templates/umap/design_system.html +9 -0
- umap/templates/umap/js.html +3 -0
- umap/templates/umap/map_list.html +2 -2
- umap/templates/umap/map_table.html +18 -18
- umap/templates/umap/user_dashboard.html +9 -58
- umap/templates/umap/user_map_table.html +36 -0
- umap/templates/umap/user_templates.html +19 -0
- umap/templatetags/umap_tags.py +5 -0
- umap/tests/integration/test_conditional_rules.py +57 -0
- umap/tests/integration/test_datalayer.py +16 -9
- umap/tests/integration/test_edit_marker.py +11 -0
- umap/tests/integration/test_tableeditor.py +42 -7
- umap/tests/integration/test_templates.py +44 -0
- umap/tests/test_dashboard.py +19 -0
- umap/tests/test_purge_old_versions.py +91 -0
- umap/tests/test_switch_user.py +31 -0
- umap/tests/test_views.py +67 -0
- umap/urls.py +7 -1
- umap/views.py +64 -18
- {umap_project-3.0.6.dist-info → umap_project-3.1.0.dist-info}/METADATA +14 -14
- {umap_project-3.0.6.dist-info → umap_project-3.1.0.dist-info}/RECORD +142 -129
- {umap_project-3.0.6.dist-info → umap_project-3.1.0.dist-info}/WHEEL +0 -0
- {umap_project-3.0.6.dist-info → umap_project-3.1.0.dist-info}/entry_points.txt +0 -0
- {umap_project-3.0.6.dist-info → umap_project-3.1.0.dist-info}/licenses/LICENSE +0 -0
|
Binary file
|
|
@@ -7,13 +7,14 @@
|
|
|
7
7
|
# danieldegroot2 <danieldegroot18@gmail.com>, 2022
|
|
8
8
|
# danieldegroot2 <danieldegroot18@gmail.com>, 2022
|
|
9
9
|
# Gideon van Melle <translations@gvmelle.com>, 2025
|
|
10
|
+
# Joost Schouppe <joost.schouppe@gmail.com>, 2025
|
|
10
11
|
msgid ""
|
|
11
12
|
msgstr ""
|
|
12
13
|
"Project-Id-Version: uMap\n"
|
|
13
14
|
"Report-Msgid-Bugs-To: \n"
|
|
14
|
-
"POT-Creation-Date: 2025-
|
|
15
|
+
"POT-Creation-Date: 2025-06-10 09:19+0000\n"
|
|
15
16
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
16
|
-
"Last-Translator:
|
|
17
|
+
"Last-Translator: Joost Schouppe <joost.schouppe@gmail.com>, 2025\n"
|
|
17
18
|
"Language-Team: Dutch (http://app.transifex.com/openstreetmap/umap/language/nl/)\n"
|
|
18
19
|
"MIME-Version: 1.0\n"
|
|
19
20
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
@@ -39,13 +40,13 @@ msgid ""
|
|
|
39
40
|
"Using “%(name)s” to authenticate is deprecated and will be removed soon. "
|
|
40
41
|
"Please configure another provider below before losing access to your account"
|
|
41
42
|
" and maps. Then, please logout and login again with the new provider."
|
|
42
|
-
msgstr "Het gebruik van %(name)s om te verifiëren is afgeschaft en zal binnenkort worden verwijderd. Configureer hieronder een andere provider voordat u de toegang tot uw account en kaarten verliest. Log uit en log opnieuw in met de nieuwe provider."
|
|
43
|
+
msgstr "Het gebruik van \"%(name)s\" om te verifiëren is afgeschaft en zal binnenkort worden verwijderd. Configureer hieronder een andere provider voordat u de toegang tot uw account en kaarten verliest. Log uit en log opnieuw in met de nieuwe provider."
|
|
43
44
|
|
|
44
45
|
#: models.py:61 models.py:80
|
|
45
46
|
msgid "name"
|
|
46
47
|
msgstr "naam"
|
|
47
48
|
|
|
48
|
-
#: models.py:63 models.py:
|
|
49
|
+
#: models.py:63 models.py:503
|
|
49
50
|
msgid "description"
|
|
50
51
|
msgstr "omschrijving"
|
|
51
52
|
|
|
@@ -65,23 +66,23 @@ msgstr "URL-sjabloon met OSM tegel-formaat"
|
|
|
65
66
|
msgid "Order of the tilelayers in the edit box"
|
|
66
67
|
msgstr "Volgorde van de tegel-lagen in het bewerkingsvak."
|
|
67
68
|
|
|
68
|
-
#: models.py:176 models.py:
|
|
69
|
+
#: models.py:176 models.py:497
|
|
69
70
|
msgid "Only editable with secret edit link"
|
|
70
71
|
msgstr "Alleen te bewerken met een geheime link"
|
|
71
72
|
|
|
72
|
-
#: models.py:177 models.py:
|
|
73
|
+
#: models.py:177 models.py:498
|
|
73
74
|
msgid "Everyone can edit"
|
|
74
75
|
msgstr "Iedereen kan wijzigingen maken"
|
|
75
76
|
|
|
76
|
-
#: models.py:180 models.py:
|
|
77
|
+
#: models.py:180 models.py:491
|
|
77
78
|
msgid "Everyone"
|
|
78
79
|
msgstr "Iedereen"
|
|
79
80
|
|
|
80
|
-
#: models.py:181 models.py:190 models.py:
|
|
81
|
+
#: models.py:181 models.py:190 models.py:492
|
|
81
82
|
msgid "Editors and team only"
|
|
82
83
|
msgstr "Alleen redacteuren en team"
|
|
83
84
|
|
|
84
|
-
#: models.py:182 models.py:
|
|
85
|
+
#: models.py:182 models.py:493
|
|
85
86
|
msgid "Owner only"
|
|
86
87
|
msgstr "Alleen eigenaar"
|
|
87
88
|
|
|
@@ -101,7 +102,7 @@ msgstr "Iedereen met een link"
|
|
|
101
102
|
msgid "Blocked"
|
|
102
103
|
msgstr "geblokkeerd"
|
|
103
104
|
|
|
104
|
-
#: models.py:192 models.py:
|
|
105
|
+
#: models.py:192 models.py:487
|
|
105
106
|
msgid "Deleted"
|
|
106
107
|
msgstr "Verwijderd"
|
|
107
108
|
|
|
@@ -141,99 +142,123 @@ msgstr "editors"
|
|
|
141
142
|
msgid "team"
|
|
142
143
|
msgstr "team"
|
|
143
144
|
|
|
144
|
-
#: models.py:230 models.py:
|
|
145
|
+
#: models.py:230 models.py:519
|
|
145
146
|
msgid "edit status"
|
|
146
147
|
msgstr "wijzig status"
|
|
147
148
|
|
|
148
|
-
#: models.py:235 models.py:
|
|
149
|
+
#: models.py:235 models.py:524
|
|
149
150
|
msgid "share status"
|
|
150
151
|
msgstr "deel status"
|
|
151
152
|
|
|
152
|
-
#: models.py:238 models.py:
|
|
153
|
+
#: models.py:238 models.py:514
|
|
153
154
|
msgid "settings"
|
|
154
155
|
msgstr "instellingen"
|
|
155
156
|
|
|
156
|
-
#: models.py:
|
|
157
|
+
#: models.py:243
|
|
158
|
+
msgid "save as template"
|
|
159
|
+
msgstr "sla op als sjabloon"
|
|
160
|
+
|
|
161
|
+
#: models.py:244
|
|
162
|
+
msgid "This map is a template map."
|
|
163
|
+
msgstr "Deze kaart is een sjabloon."
|
|
164
|
+
|
|
165
|
+
#: models.py:420
|
|
157
166
|
msgid "Clone of"
|
|
158
167
|
msgstr "Kopie van"
|
|
159
168
|
|
|
160
|
-
#: models.py:
|
|
169
|
+
#: models.py:486 models.py:490 models.py:496
|
|
161
170
|
msgid "Inherit"
|
|
162
171
|
msgstr "overerven"
|
|
163
172
|
|
|
164
|
-
#: models.py:
|
|
173
|
+
#: models.py:509
|
|
165
174
|
msgid "display on load"
|
|
166
175
|
msgstr "toon tijdens laden"
|
|
167
176
|
|
|
168
|
-
#: models.py:
|
|
177
|
+
#: models.py:510
|
|
169
178
|
msgid "Display this layer on load."
|
|
170
179
|
msgstr "Toon deze laag tijdens laden."
|
|
171
180
|
|
|
172
|
-
#: settings/base.py:
|
|
181
|
+
#: settings/base.py:283
|
|
182
|
+
msgid "uMap user documentation"
|
|
183
|
+
msgstr "uMap gebruikersdocumentatie"
|
|
184
|
+
|
|
185
|
+
#: settings/base.py:288
|
|
186
|
+
msgid "Video tutorials"
|
|
187
|
+
msgstr "Video instructies"
|
|
188
|
+
|
|
189
|
+
#: settings/base.py:293
|
|
190
|
+
msgid "OpenStreetMap.org forum"
|
|
191
|
+
msgstr "OpenStreetMap.org forum"
|
|
192
|
+
|
|
193
|
+
#: settings/base.py:298
|
|
194
|
+
msgid "OpenStreetMap France forum"
|
|
195
|
+
msgstr "OpenStreetMap Frankrijk forum"
|
|
196
|
+
|
|
197
|
+
#: settings/base.py:318
|
|
173
198
|
msgid "Art and Culture"
|
|
174
199
|
msgstr "Kunst en cultuur"
|
|
175
200
|
|
|
176
|
-
#: settings/base.py:
|
|
201
|
+
#: settings/base.py:319
|
|
177
202
|
msgid "Cycling"
|
|
178
203
|
msgstr "Fietsen"
|
|
179
204
|
|
|
180
|
-
#: settings/base.py:
|
|
205
|
+
#: settings/base.py:320
|
|
181
206
|
msgid "Business"
|
|
182
207
|
msgstr "Zakelijk"
|
|
183
208
|
|
|
184
|
-
#: settings/base.py:
|
|
209
|
+
#: settings/base.py:321
|
|
185
210
|
msgid "Environment"
|
|
186
211
|
msgstr "Mlieu"
|
|
187
212
|
|
|
188
|
-
#: settings/base.py:
|
|
213
|
+
#: settings/base.py:322
|
|
189
214
|
msgid "Education"
|
|
190
215
|
msgstr "Educatie"
|
|
191
216
|
|
|
192
|
-
#: settings/base.py:
|
|
217
|
+
#: settings/base.py:323
|
|
193
218
|
msgid "Food and Agriculture"
|
|
194
219
|
msgstr "Voedsel en landbouw"
|
|
195
220
|
|
|
196
|
-
#: settings/base.py:
|
|
221
|
+
#: settings/base.py:324
|
|
197
222
|
msgid "Geopolitics"
|
|
198
223
|
msgstr "Geopolitiek"
|
|
199
224
|
|
|
200
|
-
#: settings/base.py:
|
|
225
|
+
#: settings/base.py:325
|
|
201
226
|
msgid "Health"
|
|
202
227
|
msgstr "Gezondheid"
|
|
203
228
|
|
|
204
|
-
#: settings/base.py:
|
|
229
|
+
#: settings/base.py:326
|
|
205
230
|
msgid "Hiking"
|
|
206
231
|
msgstr "Hiking"
|
|
207
232
|
|
|
208
|
-
#: settings/base.py:
|
|
233
|
+
#: settings/base.py:327
|
|
209
234
|
msgid "History"
|
|
210
235
|
msgstr "Geschiedenis"
|
|
211
236
|
|
|
212
|
-
#: settings/base.py:
|
|
237
|
+
#: settings/base.py:328
|
|
213
238
|
msgid "Public sector"
|
|
214
239
|
msgstr "Publieke sector"
|
|
215
240
|
|
|
216
|
-
#: settings/base.py:
|
|
241
|
+
#: settings/base.py:329
|
|
217
242
|
msgid "Science"
|
|
218
243
|
msgstr "Wetenschap"
|
|
219
244
|
|
|
220
|
-
#: settings/base.py:
|
|
245
|
+
#: settings/base.py:330
|
|
221
246
|
msgid "Shopping"
|
|
222
247
|
msgstr "Winkelen"
|
|
223
248
|
|
|
224
|
-
#: settings/base.py:
|
|
249
|
+
#: settings/base.py:331
|
|
225
250
|
msgid "Sport and Leisure"
|
|
226
251
|
msgstr "Sport en vrijetijd"
|
|
227
252
|
|
|
228
|
-
#: settings/base.py:
|
|
253
|
+
#: settings/base.py:332
|
|
229
254
|
msgid "Travel"
|
|
230
255
|
msgstr "Reizen"
|
|
231
256
|
|
|
232
|
-
#: settings/base.py:
|
|
257
|
+
#: settings/base.py:333
|
|
233
258
|
msgid "Transports"
|
|
234
259
|
msgstr "Transport"
|
|
235
260
|
|
|
236
|
-
#: settings/base.py:
|
|
261
|
+
#: settings/base.py:334
|
|
237
262
|
msgid "Tourism"
|
|
238
263
|
msgstr "Toerisme"
|
|
239
264
|
|
|
@@ -379,7 +404,7 @@ msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
|
379
404
|
msgstr "En het is <a href=\"%(repo_url)s\">open source</a>!"
|
|
380
405
|
|
|
381
406
|
#: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
|
|
382
|
-
#: templates/umap/user_dashboard.html:
|
|
407
|
+
#: templates/umap/user_dashboard.html:16
|
|
383
408
|
msgid "Create a map"
|
|
384
409
|
msgstr "Maak een kaart"
|
|
385
410
|
|
|
@@ -477,11 +502,20 @@ msgstr "Mijn kaarten (%(count)s)"
|
|
|
477
502
|
msgid "My Maps"
|
|
478
503
|
msgstr "Mijn kaarten"
|
|
479
504
|
|
|
480
|
-
#: templates/umap/dashboard_menu.html:
|
|
505
|
+
#: templates/umap/dashboard_menu.html:11
|
|
506
|
+
#, python-format
|
|
507
|
+
msgid "My Templates (%(count)s)"
|
|
508
|
+
msgstr ""
|
|
509
|
+
|
|
510
|
+
#: templates/umap/dashboard_menu.html:13 templates/umap/user_templates.html:6
|
|
511
|
+
msgid "My Templates"
|
|
512
|
+
msgstr ""
|
|
513
|
+
|
|
514
|
+
#: templates/umap/dashboard_menu.html:17
|
|
481
515
|
msgid "My profile"
|
|
482
516
|
msgstr "Mijn profiel"
|
|
483
517
|
|
|
484
|
-
#: templates/umap/dashboard_menu.html:
|
|
518
|
+
#: templates/umap/dashboard_menu.html:20
|
|
485
519
|
msgid "My teams"
|
|
486
520
|
msgstr "Mijn teams"
|
|
487
521
|
|
|
@@ -497,10 +531,18 @@ msgstr "Laat u inspireren, blader door kaarten"
|
|
|
497
531
|
msgid "You are logged in. Continuing..."
|
|
498
532
|
msgstr "U bent ingelogd. Ga verder..."
|
|
499
533
|
|
|
500
|
-
#: templates/umap/map_list.html:
|
|
534
|
+
#: templates/umap/map_list.html:15
|
|
535
|
+
msgid "template"
|
|
536
|
+
msgstr "sjabloon"
|
|
537
|
+
|
|
538
|
+
#: templates/umap/map_list.html:18 views.py:458
|
|
501
539
|
msgid "by"
|
|
502
540
|
msgstr "door"
|
|
503
541
|
|
|
542
|
+
#: templates/umap/map_list.html:22
|
|
543
|
+
msgid "See the template"
|
|
544
|
+
msgstr "Bekijk het sjabloon"
|
|
545
|
+
|
|
504
546
|
#: templates/umap/map_list.html:22
|
|
505
547
|
msgid "See the map"
|
|
506
548
|
msgstr "Zie de kaart"
|
|
@@ -537,7 +579,7 @@ msgstr "Eigenaar"
|
|
|
537
579
|
msgid "Actions"
|
|
538
580
|
msgstr "Acties"
|
|
539
581
|
|
|
540
|
-
#: templates/umap/map_table.html:
|
|
582
|
+
#: templates/umap/map_table.html:40 templates/umap/map_table.html:42
|
|
541
583
|
msgid "Open preview"
|
|
542
584
|
msgstr "Open Voorbeeld"
|
|
543
585
|
|
|
@@ -664,7 +706,7 @@ msgid_plural "%(count)s maps found:"
|
|
|
664
706
|
msgstr[0] "%(count)s kaarten gevonden:"
|
|
665
707
|
msgstr[1] "%(count)s kaarten gevonden:"
|
|
666
708
|
|
|
667
|
-
#: templates/umap/search.html:30
|
|
709
|
+
#: templates/umap/search.html:30 templates/umap/user_dashboard.html:17
|
|
668
710
|
msgid "No map found."
|
|
669
711
|
msgstr "Geen kaart gevonden."
|
|
670
712
|
|
|
@@ -719,20 +761,20 @@ msgstr "Verwijder dit team"
|
|
|
719
761
|
msgid "Add user"
|
|
720
762
|
msgstr "Gebruiker toevoegen"
|
|
721
763
|
|
|
722
|
-
#: templates/umap/user_dashboard.html:
|
|
764
|
+
#: templates/umap/user_dashboard.html:10
|
|
723
765
|
msgid "Search my maps"
|
|
724
766
|
msgstr "Doorzoek mijn kaarten"
|
|
725
767
|
|
|
726
|
-
#: templates/umap/user_dashboard.html:
|
|
727
|
-
msgid "Map’s
|
|
728
|
-
msgstr "
|
|
768
|
+
#: templates/umap/user_dashboard.html:11
|
|
769
|
+
msgid "Map’s name"
|
|
770
|
+
msgstr ""
|
|
729
771
|
|
|
730
|
-
#: templates/umap/user_dashboard.html:
|
|
772
|
+
#: templates/umap/user_dashboard.html:12
|
|
731
773
|
#, python-format
|
|
732
774
|
msgid "Download %(count)s maps"
|
|
733
775
|
msgstr "Download %(count)s kaarten"
|
|
734
776
|
|
|
735
|
-
#: templates/umap/user_dashboard.html:
|
|
777
|
+
#: templates/umap/user_dashboard.html:15
|
|
736
778
|
msgid "You have no map yet."
|
|
737
779
|
msgstr "Je hebt nog geen kaart."
|
|
738
780
|
|
|
@@ -748,70 +790,95 @@ msgstr "Gebruikers"
|
|
|
748
790
|
msgid "New team"
|
|
749
791
|
msgstr "Nieuw Team"
|
|
750
792
|
|
|
751
|
-
#:
|
|
793
|
+
#: templates/umap/user_templates.html:10
|
|
794
|
+
msgid "Search my templates"
|
|
795
|
+
msgstr ""
|
|
796
|
+
|
|
797
|
+
#: templates/umap/user_templates.html:11
|
|
798
|
+
msgid "Template’s name"
|
|
799
|
+
msgstr ""
|
|
800
|
+
|
|
801
|
+
#: templates/umap/user_templates.html:12
|
|
802
|
+
#, python-format
|
|
803
|
+
msgid "Download %(count)s templates"
|
|
804
|
+
msgstr ""
|
|
805
|
+
|
|
806
|
+
#: templates/umap/user_templates.html:15
|
|
807
|
+
msgid "You have no template yet."
|
|
808
|
+
msgstr ""
|
|
809
|
+
|
|
810
|
+
#: templates/umap/user_templates.html:16
|
|
811
|
+
msgid "Create a template"
|
|
812
|
+
msgstr ""
|
|
813
|
+
|
|
814
|
+
#: templates/umap/user_templates.html:17
|
|
815
|
+
msgid "No template found."
|
|
816
|
+
msgstr ""
|
|
817
|
+
|
|
818
|
+
#: views.py:233
|
|
752
819
|
msgid "Cannot delete a team with more than one member"
|
|
753
820
|
msgstr "Kan een team met meer dan één lid niet verwijderen"
|
|
754
821
|
|
|
755
|
-
#: views.py:
|
|
822
|
+
#: views.py:237
|
|
756
823
|
#, python-format
|
|
757
824
|
msgid "Team “%(name)s” has been deleted"
|
|
758
825
|
msgstr "Team “%(name)s” is verwijderd"
|
|
759
826
|
|
|
760
|
-
#: views.py:
|
|
827
|
+
#: views.py:463
|
|
761
828
|
msgid "View the map"
|
|
762
829
|
msgstr "Bekijk de kaart"
|
|
763
830
|
|
|
764
|
-
#: views.py:
|
|
831
|
+
#: views.py:864
|
|
765
832
|
msgid "See full screen"
|
|
766
833
|
msgstr "Volledig scherm weergeven"
|
|
767
834
|
|
|
768
|
-
#: views.py:
|
|
835
|
+
#: views.py:1007
|
|
769
836
|
msgid "Map editors updated with success!"
|
|
770
837
|
msgstr "Kaarteditors met succes bijgewerkt!"
|
|
771
838
|
|
|
772
|
-
#: views.py:
|
|
839
|
+
#: views.py:1043
|
|
773
840
|
#, python-format
|
|
774
841
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
775
842
|
msgstr "De uMap-bewerkingslink voor uw kaart: %(map_name)s"
|
|
776
843
|
|
|
777
|
-
#: views.py:
|
|
844
|
+
#: views.py:1046
|
|
778
845
|
#, python-format
|
|
779
846
|
msgid "Here is your secret edit link: %(link)s"
|
|
780
847
|
msgstr "Hier is je geheime bewerkingslink: %(link)s"
|
|
781
848
|
|
|
782
|
-
#: views.py:
|
|
849
|
+
#: views.py:1053
|
|
783
850
|
#, python-format
|
|
784
851
|
msgid "Can't send email to %(email)s"
|
|
785
852
|
msgstr "Kan geen e-mail verzenden naar %(email)s"
|
|
786
853
|
|
|
787
|
-
#: views.py:
|
|
854
|
+
#: views.py:1056
|
|
788
855
|
#, python-format
|
|
789
856
|
msgid "Email sent to %(email)s"
|
|
790
857
|
msgstr "E-mail verzonden naar %(email)s"
|
|
791
858
|
|
|
792
|
-
#: views.py:
|
|
859
|
+
#: views.py:1067
|
|
793
860
|
msgid "Only its owner can delete the map."
|
|
794
861
|
msgstr "Kaart kan alleen door eigenaar worden verwijderd."
|
|
795
862
|
|
|
796
|
-
#: views.py:
|
|
863
|
+
#: views.py:1073
|
|
797
864
|
msgid "Map successfully deleted."
|
|
798
865
|
msgstr "Kaart succesvol verwijderd."
|
|
799
866
|
|
|
800
|
-
#: views.py:
|
|
867
|
+
#: views.py:1099
|
|
801
868
|
#, python-format
|
|
802
869
|
msgid ""
|
|
803
870
|
"Your map has been cloned! If you want to edit this map from another "
|
|
804
871
|
"computer, please use this link: %(anonymous_url)s"
|
|
805
872
|
msgstr "Uw kaart is gekopieerd! Als u deze kaart wilt wijzigen vanaf een andere computer, gebruik dan deze link: %(anonymous_url)s"
|
|
806
873
|
|
|
807
|
-
#: views.py:
|
|
874
|
+
#: views.py:1104
|
|
808
875
|
msgid "Congratulations, your map has been cloned!"
|
|
809
876
|
msgstr "Gefeliciteerd, uw kaart is gekopieerd!"
|
|
810
877
|
|
|
811
|
-
#: views.py:
|
|
878
|
+
#: views.py:1358
|
|
812
879
|
msgid "Layer successfully deleted."
|
|
813
880
|
msgstr "Laag is verwijderd."
|
|
814
881
|
|
|
815
|
-
#: views.py:
|
|
882
|
+
#: views.py:1380
|
|
816
883
|
msgid "Permissions updated with success!"
|
|
817
884
|
msgstr "Machtigingen met succes bijgewerkt!"
|
|
Binary file
|