umap-project 2.0.4__py3-none-any.whl → 2.1.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- umap/__init__.py +1 -1
- umap/fields.py +3 -1
- umap/locale/br/LC_MESSAGES/django.po +76 -71
- umap/locale/en/LC_MESSAGES/django.po +41 -41
- umap/locale/hu/LC_MESSAGES/django.po +42 -42
- umap/locale/it/LC_MESSAGES/django.po +64 -58
- umap/locale/ms/LC_MESSAGES/django.po +62 -57
- umap/migrations/0018_datalayer_uuid.py +62 -0
- umap/migrations/0019_migrate_internal_remote_datalayers.py +52 -0
- umap/models.py +20 -3
- umap/settings/base.py +1 -0
- umap/settings/dev.py +1 -0
- umap/static/umap/js/modules/browser.js +2 -2
- umap/static/umap/js/modules/global.js +14 -4
- umap/static/umap/js/modules/i18n.js +35 -0
- umap/static/umap/js/modules/leaflet-configure.js +7 -0
- umap/static/umap/js/modules/schema.js +388 -0
- umap/static/umap/js/modules/urls.js +17 -2
- umap/static/umap/js/modules/utils.js +24 -0
- umap/static/umap/js/umap.controls.js +9 -10
- umap/static/umap/js/umap.core.js +5 -5
- umap/static/umap/js/umap.features.js +23 -9
- umap/static/umap/js/umap.forms.js +49 -299
- umap/static/umap/js/umap.icon.js +2 -2
- umap/static/umap/js/umap.js +26 -129
- umap/static/umap/js/umap.layer.js +9 -9
- umap/static/umap/js/umap.popup.js +3 -0
- umap/static/umap/js/umap.share.js +1 -1
- umap/static/umap/locale/am_ET.json +229 -225
- umap/static/umap/locale/ar.json +229 -225
- umap/static/umap/locale/ast.json +229 -225
- umap/static/umap/locale/bg.json +229 -225
- umap/static/umap/locale/br.json +237 -233
- umap/static/umap/locale/ca.json +229 -225
- umap/static/umap/locale/cs_CZ.json +229 -225
- umap/static/umap/locale/da.json +229 -225
- umap/static/umap/locale/de.json +229 -225
- umap/static/umap/locale/el.json +229 -225
- umap/static/umap/locale/en.json +230 -233
- umap/static/umap/locale/en_US.json +229 -225
- umap/static/umap/locale/es.json +229 -225
- umap/static/umap/locale/et.json +229 -225
- umap/static/umap/locale/eu.json +226 -198
- umap/static/umap/locale/fa_IR.json +229 -225
- umap/static/umap/locale/fi.json +229 -225
- umap/static/umap/locale/fr.json +229 -232
- umap/static/umap/locale/gl.json +229 -225
- umap/static/umap/locale/he.json +229 -225
- umap/static/umap/locale/hr.json +229 -225
- umap/static/umap/locale/hu.json +229 -232
- umap/static/umap/locale/id.json +229 -225
- umap/static/umap/locale/is.json +229 -225
- umap/static/umap/locale/it.json +229 -232
- umap/static/umap/locale/ja.json +229 -225
- umap/static/umap/locale/ko.json +229 -225
- umap/static/umap/locale/lt.json +229 -225
- umap/static/umap/locale/ms.json +229 -232
- umap/static/umap/locale/nl.json +232 -228
- umap/static/umap/locale/no.json +229 -225
- umap/static/umap/locale/pl.json +229 -225
- umap/static/umap/locale/pl_PL.json +229 -225
- umap/static/umap/locale/pt.json +229 -225
- umap/static/umap/locale/pt_BR.json +229 -225
- umap/static/umap/locale/pt_PT.json +229 -225
- umap/static/umap/locale/ro.json +229 -225
- umap/static/umap/locale/ru.json +229 -225
- umap/static/umap/locale/sk_SK.json +229 -225
- umap/static/umap/locale/sl.json +229 -225
- umap/static/umap/locale/sr.json +229 -225
- umap/static/umap/locale/sv.json +229 -225
- umap/static/umap/locale/th_TH.json +229 -225
- umap/static/umap/locale/tr.json +229 -225
- umap/static/umap/locale/uk_UA.json +229 -225
- umap/static/umap/locale/vi.json +229 -225
- umap/static/umap/locale/vi_VN.json +229 -225
- umap/static/umap/locale/zh.json +229 -225
- umap/static/umap/locale/zh_CN.json +229 -225
- umap/static/umap/locale/zh_TW.Big5.json +229 -225
- umap/static/umap/locale/zh_TW.json +229 -232
- umap/static/umap/test/index.html +0 -2
- umap/static/umap/{test → unittests}/URLs.js +5 -0
- umap/static/umap/vendors/leaflet/leaflet-src.esm.js +7064 -7064
- umap/static/umap/vendors/photon/leaflet.photon.js +3 -0
- umap/templates/umap/js.html +8 -6
- umap/templatetags/umap_tags.py +3 -2
- umap/tests/integration/test_browser.py +40 -0
- umap/tests/integration/test_collaborative_editing.py +72 -3
- umap/tests/integration/test_export_map.py +226 -9
- umap/tests/integration/test_features_id_generation.py +51 -0
- umap/tests/integration/test_owned_map.py +14 -1
- umap/tests/integration/test_statics.py +3 -3
- umap/tests/integration/test_tilelayer.py +3 -3
- umap/tests/settings.py +3 -3
- umap/tests/test_datalayer_views.py +77 -20
- umap/tests/test_map_views.py +20 -0
- umap/tests/test_merge_features.py +25 -5
- umap/urls.py +12 -12
- umap/utils.py +7 -0
- umap/views.py +58 -49
- umap/wsgi.py +1 -0
- {umap_project-2.0.4.dist-info → umap_project-2.1.1.dist-info}/METADATA +9 -9
- {umap_project-2.0.4.dist-info → umap_project-2.1.1.dist-info}/RECORD +105 -99
- umap/static/umap/test/Map.Export.js +0 -106
- {umap_project-2.0.4.dist-info → umap_project-2.1.1.dist-info}/WHEEL +0 -0
- {umap_project-2.0.4.dist-info → umap_project-2.1.1.dist-info}/entry_points.txt +0 -0
- {umap_project-2.0.4.dist-info → umap_project-2.1.1.dist-info}/licenses/LICENSE +0 -0
umap/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
VERSION = "2.
|
|
1
|
+
VERSION = "2.1.1"
|
umap/fields.py
CHANGED
|
@@ -4,6 +4,8 @@ import six
|
|
|
4
4
|
from django.db import models
|
|
5
5
|
from django.utils.encoding import smart_str
|
|
6
6
|
|
|
7
|
+
from .utils import json_dumps
|
|
8
|
+
|
|
7
9
|
|
|
8
10
|
class DictField(models.TextField):
|
|
9
11
|
"""
|
|
@@ -14,7 +16,7 @@ class DictField(models.TextField):
|
|
|
14
16
|
if not value:
|
|
15
17
|
value = {}
|
|
16
18
|
if not isinstance(value, six.string_types):
|
|
17
|
-
value =
|
|
19
|
+
value = json_dumps(value)
|
|
18
20
|
return value
|
|
19
21
|
|
|
20
22
|
def from_db_value(self, value, expression, connection):
|
|
@@ -10,7 +10,7 @@ msgid ""
|
|
|
10
10
|
msgstr ""
|
|
11
11
|
"Project-Id-Version: uMap\n"
|
|
12
12
|
"Report-Msgid-Bugs-To: \n"
|
|
13
|
-
"POT-Creation-Date: 2024-
|
|
13
|
+
"POT-Creation-Date: 2024-03-25 12:41+0000\n"
|
|
14
14
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
15
15
|
"Last-Translator: Dren ar Frankig <hadrienlouque@gmail.com>, 2023-2024\n"
|
|
16
16
|
"Language-Team: Breton (http://app.transifex.com/openstreetmap/umap/language/br/)\n"
|
|
@@ -28,7 +28,7 @@ msgstr "N'haller he c'hemmañ nemet gant ul liamm aozañ kuzh"
|
|
|
28
28
|
msgid "Everyone can edit"
|
|
29
29
|
msgstr "An holl a c'hall kemmañ"
|
|
30
30
|
|
|
31
|
-
#: forms.py:69 models.py:
|
|
31
|
+
#: forms.py:69 models.py:381
|
|
32
32
|
msgid "Inherit"
|
|
33
33
|
msgstr "Dre ziouer"
|
|
34
34
|
|
|
@@ -36,107 +36,107 @@ msgstr "Dre ziouer"
|
|
|
36
36
|
msgid "Site is readonly for maintenance"
|
|
37
37
|
msgstr "Al lec'hienn zo da lenn hepken rak emeur ouzh he c'hempenn"
|
|
38
38
|
|
|
39
|
-
#: models.py:
|
|
39
|
+
#: models.py:52
|
|
40
40
|
msgid "name"
|
|
41
41
|
msgstr "anv"
|
|
42
42
|
|
|
43
|
-
#: models.py:
|
|
43
|
+
#: models.py:83
|
|
44
44
|
msgid "details"
|
|
45
45
|
msgstr "munudoù"
|
|
46
46
|
|
|
47
|
-
#: models.py:
|
|
47
|
+
#: models.py:84
|
|
48
48
|
msgid "Link to a page where the licence is detailed."
|
|
49
49
|
msgstr "Liamm war-zu ur bajenn a zispleg an aotre-implijout."
|
|
50
50
|
|
|
51
|
-
#: models.py:
|
|
51
|
+
#: models.py:94
|
|
52
52
|
msgid "URL template using OSM tile format"
|
|
53
53
|
msgstr "Patrom URL a implij furmad teol OSM"
|
|
54
54
|
|
|
55
|
-
#: models.py:
|
|
55
|
+
#: models.py:100
|
|
56
56
|
msgid "Order of the tilelayers in the edit box"
|
|
57
57
|
msgstr ""
|
|
58
58
|
|
|
59
|
-
#: models.py:
|
|
59
|
+
#: models.py:146 models.py:382
|
|
60
60
|
msgid "Everyone"
|
|
61
61
|
msgstr "An holl"
|
|
62
62
|
|
|
63
|
-
#: models.py:
|
|
63
|
+
#: models.py:147 models.py:153 models.py:383
|
|
64
64
|
msgid "Editors only"
|
|
65
65
|
msgstr "Aozerien nemetken"
|
|
66
66
|
|
|
67
|
-
#: models.py:
|
|
67
|
+
#: models.py:148 models.py:384
|
|
68
68
|
msgid "Owner only"
|
|
69
69
|
msgstr "Ar perc'henner hepken"
|
|
70
70
|
|
|
71
|
-
#: models.py:
|
|
71
|
+
#: models.py:151
|
|
72
72
|
msgid "Everyone (public)"
|
|
73
73
|
msgstr "An holl (publik)"
|
|
74
74
|
|
|
75
|
-
#: models.py:
|
|
75
|
+
#: models.py:152
|
|
76
76
|
msgid "Anyone with link"
|
|
77
77
|
msgstr "Piv bennak en deus ul liamm"
|
|
78
78
|
|
|
79
|
-
#: models.py:
|
|
79
|
+
#: models.py:154
|
|
80
80
|
msgid "Blocked"
|
|
81
81
|
msgstr "Stanket"
|
|
82
82
|
|
|
83
|
-
#: models.py:
|
|
83
|
+
#: models.py:157 models.py:391
|
|
84
84
|
msgid "description"
|
|
85
85
|
msgstr "deskrivadur"
|
|
86
86
|
|
|
87
|
-
#: models.py:
|
|
87
|
+
#: models.py:158
|
|
88
88
|
msgid "center"
|
|
89
89
|
msgstr "kreizañ"
|
|
90
90
|
|
|
91
|
-
#: models.py:
|
|
91
|
+
#: models.py:159
|
|
92
92
|
msgid "zoom"
|
|
93
93
|
msgstr "zoumañ"
|
|
94
94
|
|
|
95
|
-
#: models.py:
|
|
95
|
+
#: models.py:161
|
|
96
96
|
msgid "locate"
|
|
97
97
|
msgstr "lec'hiañ"
|
|
98
98
|
|
|
99
|
-
#: models.py:
|
|
99
|
+
#: models.py:161
|
|
100
100
|
msgid "Locate user on load?"
|
|
101
101
|
msgstr "Lec'hiañ an implijer en ur gargañ?"
|
|
102
102
|
|
|
103
|
-
#: models.py:
|
|
103
|
+
#: models.py:165
|
|
104
104
|
msgid "Choose the map licence."
|
|
105
105
|
msgstr "Dibabit aotre-implijout ar gartenn."
|
|
106
106
|
|
|
107
|
-
#: models.py:
|
|
107
|
+
#: models.py:166
|
|
108
108
|
msgid "licence"
|
|
109
109
|
msgstr "aotre"
|
|
110
110
|
|
|
111
|
-
#: models.py:
|
|
111
|
+
#: models.py:177
|
|
112
112
|
msgid "owner"
|
|
113
113
|
msgstr "perc'henner"
|
|
114
114
|
|
|
115
|
-
#: models.py:
|
|
115
|
+
#: models.py:181
|
|
116
116
|
msgid "editors"
|
|
117
117
|
msgstr "aozerien"
|
|
118
118
|
|
|
119
|
-
#: models.py:
|
|
119
|
+
#: models.py:186 models.py:405
|
|
120
120
|
msgid "edit status"
|
|
121
121
|
msgstr "statud aozañ"
|
|
122
122
|
|
|
123
|
-
#: models.py:
|
|
123
|
+
#: models.py:191
|
|
124
124
|
msgid "share status"
|
|
125
125
|
msgstr "digor da biv?"
|
|
126
126
|
|
|
127
|
-
#: models.py:
|
|
127
|
+
#: models.py:194 models.py:400
|
|
128
128
|
msgid "settings"
|
|
129
129
|
msgstr "arventennoù"
|
|
130
130
|
|
|
131
|
-
#: models.py:
|
|
131
|
+
#: models.py:322
|
|
132
132
|
msgid "Clone of"
|
|
133
133
|
msgstr "Eilenn eus"
|
|
134
134
|
|
|
135
|
-
#: models.py:
|
|
135
|
+
#: models.py:395
|
|
136
136
|
msgid "display on load"
|
|
137
137
|
msgstr "diskwel pa vez karget"
|
|
138
138
|
|
|
139
|
-
#: models.py:
|
|
139
|
+
#: models.py:396
|
|
140
140
|
msgid "Display this layer on load."
|
|
141
141
|
msgstr "Diskwel ar gwiskad-mañ pa vez karget"
|
|
142
142
|
|
|
@@ -156,7 +156,7 @@ msgstr "%(current_user)s n'en/he deus kartenn ebet."
|
|
|
156
156
|
|
|
157
157
|
#: templates/auth/user_form.html:6
|
|
158
158
|
msgid "My Maps"
|
|
159
|
-
msgstr ""
|
|
159
|
+
msgstr "Ma c'hartennoù"
|
|
160
160
|
|
|
161
161
|
#: templates/auth/user_form.html:7
|
|
162
162
|
msgid "My Profile"
|
|
@@ -292,7 +292,7 @@ msgstr "Bezit awenet en ur furchal kartennoù"
|
|
|
292
292
|
msgid "You are logged in. Continuing..."
|
|
293
293
|
msgstr "Kevreet oc'h. Gortozit ur pennadig..."
|
|
294
294
|
|
|
295
|
-
#: templates/umap/map_list.html:9 views.py:
|
|
295
|
+
#: templates/umap/map_list.html:9 views.py:349
|
|
296
296
|
msgid "by"
|
|
297
297
|
msgstr "gant"
|
|
298
298
|
|
|
@@ -310,11 +310,11 @@ msgstr "Rakwel"
|
|
|
310
310
|
|
|
311
311
|
#: templates/umap/map_table.html:8
|
|
312
312
|
msgid "Who can see"
|
|
313
|
-
msgstr ""
|
|
313
|
+
msgstr "Piv a c'hall gwelet"
|
|
314
314
|
|
|
315
315
|
#: templates/umap/map_table.html:9
|
|
316
316
|
msgid "Who can edit"
|
|
317
|
-
msgstr ""
|
|
317
|
+
msgstr "Piv a c'hall kemmañ"
|
|
318
318
|
|
|
319
319
|
#: templates/umap/map_table.html:10
|
|
320
320
|
msgid "Last save"
|
|
@@ -328,60 +328,60 @@ msgstr "Perc'henner"
|
|
|
328
328
|
msgid "Actions"
|
|
329
329
|
msgstr "Oberoù"
|
|
330
330
|
|
|
331
|
-
#: templates/umap/map_table.html:
|
|
331
|
+
#: templates/umap/map_table.html:26 templates/umap/map_table.html:28
|
|
332
332
|
msgid "Open preview"
|
|
333
333
|
msgstr "Digeriñ ar rakwel"
|
|
334
334
|
|
|
335
|
-
#: templates/umap/map_table.html:
|
|
335
|
+
#: templates/umap/map_table.html:48 templates/umap/map_table.html:50
|
|
336
336
|
msgid "Share"
|
|
337
337
|
msgstr "Rannañ"
|
|
338
338
|
|
|
339
|
-
#: templates/umap/map_table.html:
|
|
339
|
+
#: templates/umap/map_table.html:54 templates/umap/map_table.html:56
|
|
340
340
|
msgid "Edit"
|
|
341
341
|
msgstr "Aozañ"
|
|
342
342
|
|
|
343
|
-
#: templates/umap/map_table.html:
|
|
343
|
+
#: templates/umap/map_table.html:60 templates/umap/map_table.html:62
|
|
344
344
|
msgid "Download"
|
|
345
345
|
msgstr "Pellgargañ"
|
|
346
346
|
|
|
347
|
-
#: templates/umap/map_table.html:
|
|
347
|
+
#: templates/umap/map_table.html:66 templates/umap/map_table.html:68
|
|
348
348
|
msgid "Clone"
|
|
349
|
-
msgstr ""
|
|
349
|
+
msgstr "Doublañ"
|
|
350
350
|
|
|
351
|
-
#: templates/umap/map_table.html:
|
|
351
|
+
#: templates/umap/map_table.html:76 templates/umap/map_table.html:78
|
|
352
352
|
msgid "Delete"
|
|
353
|
-
msgstr ""
|
|
353
|
+
msgstr "Dilemel"
|
|
354
354
|
|
|
355
|
-
#: templates/umap/map_table.html:
|
|
355
|
+
#: templates/umap/map_table.html:91
|
|
356
356
|
msgid "first"
|
|
357
357
|
msgstr "kentañ"
|
|
358
358
|
|
|
359
|
-
#: templates/umap/map_table.html:
|
|
359
|
+
#: templates/umap/map_table.html:92
|
|
360
360
|
msgid "previous"
|
|
361
361
|
msgstr "kent"
|
|
362
362
|
|
|
363
|
-
#: templates/umap/map_table.html:
|
|
363
|
+
#: templates/umap/map_table.html:100
|
|
364
364
|
#, python-format
|
|
365
365
|
msgid "Page %(maps_number)s of %(num_pages)s"
|
|
366
|
-
msgstr ""
|
|
366
|
+
msgstr "Pajenn %(maps_number)s diwar %(num_pages)s"
|
|
367
367
|
|
|
368
|
-
#: templates/umap/map_table.html:
|
|
368
|
+
#: templates/umap/map_table.html:105
|
|
369
369
|
msgid "next"
|
|
370
370
|
msgstr "war-lerc'h"
|
|
371
371
|
|
|
372
|
-
#: templates/umap/map_table.html:
|
|
372
|
+
#: templates/umap/map_table.html:106
|
|
373
373
|
msgid "last"
|
|
374
374
|
msgstr "diwezhañ"
|
|
375
375
|
|
|
376
|
-
#: templates/umap/map_table.html:
|
|
376
|
+
#: templates/umap/map_table.html:114
|
|
377
377
|
#, python-format
|
|
378
378
|
msgid "Lines per page: %(per_page)s"
|
|
379
|
-
msgstr ""
|
|
379
|
+
msgstr "Linennoù dre bajenn: %(per_page)s"
|
|
380
380
|
|
|
381
|
-
#: templates/umap/map_table.html:
|
|
381
|
+
#: templates/umap/map_table.html:119
|
|
382
382
|
#, python-format
|
|
383
383
|
msgid "%(count)s maps"
|
|
384
|
-
msgstr ""
|
|
384
|
+
msgstr "%(count)s a gartennoù"
|
|
385
385
|
|
|
386
386
|
#: templates/umap/navigation.html:10 templates/umap/user_dashboard.html:4
|
|
387
387
|
msgid "My Dashboard"
|
|
@@ -475,78 +475,83 @@ msgstr "Klask kartennoù"
|
|
|
475
475
|
msgid "Search"
|
|
476
476
|
msgstr "Klask"
|
|
477
477
|
|
|
478
|
-
#: templates/umap/user_dashboard.html:7 templates/umap/user_dashboard.html:
|
|
478
|
+
#: templates/umap/user_dashboard.html:7 templates/umap/user_dashboard.html:27
|
|
479
479
|
msgid "Search my maps"
|
|
480
480
|
msgstr "Klask e-touez ma c'hartennoù"
|
|
481
481
|
|
|
482
|
-
#: templates/umap/user_dashboard.html:
|
|
482
|
+
#: templates/umap/user_dashboard.html:10
|
|
483
483
|
#, python-format
|
|
484
484
|
msgid "My Maps (%(count)s)"
|
|
485
|
-
msgstr ""
|
|
485
|
+
msgstr "Ma c'hartennoù (%(count)s)"
|
|
486
486
|
|
|
487
|
-
#: templates/umap/user_dashboard.html:
|
|
487
|
+
#: templates/umap/user_dashboard.html:12
|
|
488
488
|
msgid "My profile"
|
|
489
489
|
msgstr "Ma frofil"
|
|
490
490
|
|
|
491
|
-
#: templates/umap/user_dashboard.html:
|
|
491
|
+
#: templates/umap/user_dashboard.html:20 templates/umap/user_dashboard.html:24
|
|
492
492
|
msgid "Map’s title"
|
|
493
|
-
msgstr ""
|
|
493
|
+
msgstr "Titl ar gartenn"
|
|
494
494
|
|
|
495
495
|
#: templates/umap/user_dashboard.html:32
|
|
496
496
|
#, python-format
|
|
497
497
|
msgid "Download %(count)s maps"
|
|
498
|
-
msgstr ""
|
|
498
|
+
msgstr "Pellgargañ %(count)s a gartennoù"
|
|
499
499
|
|
|
500
500
|
#: templates/umap/user_dashboard.html:42
|
|
501
501
|
msgid "You have no map yet."
|
|
502
502
|
msgstr "N'ho peus kartenn ebet c'hoazh."
|
|
503
503
|
|
|
504
|
-
#: views.py:
|
|
504
|
+
#: views.py:354
|
|
505
505
|
msgid "View the map"
|
|
506
506
|
msgstr "Diskouez ar gartenn"
|
|
507
507
|
|
|
508
|
-
#: views.py:
|
|
508
|
+
#: views.py:716
|
|
509
509
|
msgid "See full screen"
|
|
510
|
-
msgstr ""
|
|
510
|
+
msgstr "Gwelet er mod skramm a-bezh"
|
|
511
511
|
|
|
512
|
-
#: views.py:
|
|
512
|
+
#: views.py:817
|
|
513
513
|
msgid "Map editors updated with success!"
|
|
514
514
|
msgstr "Aozerien ar gartenn bet hizivaet gant berzh!"
|
|
515
515
|
|
|
516
|
-
#: views.py:
|
|
516
|
+
#: views.py:854
|
|
517
517
|
#, python-format
|
|
518
518
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
519
519
|
msgstr "Al liamm uMap evit aozañ ho kartenn: %(map_name)s"
|
|
520
520
|
|
|
521
|
-
#: views.py:
|
|
521
|
+
#: views.py:857
|
|
522
522
|
#, python-format
|
|
523
523
|
msgid "Here is your secret edit link: %(link)s"
|
|
524
524
|
msgstr "Setu ho liamm aozañ kuzh: %(link)s"
|
|
525
525
|
|
|
526
|
-
#: views.py:
|
|
526
|
+
#: views.py:864
|
|
527
|
+
#, python-format
|
|
528
|
+
msgid "Can't send email to %(email)s"
|
|
529
|
+
msgstr "N'haller ket kas ur postel da %(email)s"
|
|
530
|
+
|
|
531
|
+
#: views.py:867
|
|
527
532
|
#, python-format
|
|
528
533
|
msgid "Email sent to %(email)s"
|
|
529
534
|
msgstr "Postel kaset da %(email)s"
|
|
530
535
|
|
|
531
|
-
#: views.py:
|
|
536
|
+
#: views.py:878
|
|
532
537
|
msgid "Only its owner can delete the map."
|
|
533
538
|
msgstr "N'eus nemet perc'henner ar gartenn a c'hall he dilemel."
|
|
534
539
|
|
|
535
|
-
#: views.py:
|
|
540
|
+
#: views.py:906
|
|
536
541
|
#, python-format
|
|
537
542
|
msgid ""
|
|
538
543
|
"Your map has been cloned! If you want to edit this map from another "
|
|
539
544
|
"computer, please use this link: %(anonymous_url)s"
|
|
540
|
-
msgstr "
|
|
545
|
+
msgstr "Doublet eo bet ho kartenn! M'ho peus c'hoant d'he c'hemmañ diwar un urzhiataer all, implijit al liamm-mañ: %(anonymous_url)s"
|
|
541
546
|
|
|
542
|
-
#: views.py:
|
|
547
|
+
#: views.py:911
|
|
543
548
|
msgid "Congratulations, your map has been cloned!"
|
|
544
|
-
msgstr "
|
|
549
|
+
msgstr "Doublet eo bet ho kartenn gant berzh!"
|
|
545
550
|
|
|
546
|
-
#: views.py:
|
|
551
|
+
#: views.py:1145
|
|
547
552
|
msgid "Layer successfully deleted."
|
|
548
553
|
msgstr "Gwiskad dilamet gant berzh."
|
|
549
554
|
|
|
550
|
-
#: views.py:
|
|
555
|
+
#: views.py:1167
|
|
551
556
|
msgid "Permissions updated with success!"
|
|
552
557
|
msgstr "Aotreoù hizivaet gant berzh!"
|
|
@@ -8,7 +8,7 @@ msgid ""
|
|
|
8
8
|
msgstr ""
|
|
9
9
|
"Project-Id-Version: PACKAGE VERSION\n"
|
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
|
11
|
-
"POT-Creation-Date: 2024-03-
|
|
11
|
+
"POT-Creation-Date: 2024-03-25 12:41+0000\n"
|
|
12
12
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
|
13
13
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
14
14
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
@@ -25,7 +25,7 @@ msgstr ""
|
|
|
25
25
|
msgid "Everyone can edit"
|
|
26
26
|
msgstr ""
|
|
27
27
|
|
|
28
|
-
#: forms.py:69 models.py:
|
|
28
|
+
#: forms.py:69 models.py:381
|
|
29
29
|
msgid "Inherit"
|
|
30
30
|
msgstr ""
|
|
31
31
|
|
|
@@ -33,107 +33,107 @@ msgstr ""
|
|
|
33
33
|
msgid "Site is readonly for maintenance"
|
|
34
34
|
msgstr ""
|
|
35
35
|
|
|
36
|
-
#: models.py:
|
|
36
|
+
#: models.py:52
|
|
37
37
|
msgid "name"
|
|
38
38
|
msgstr ""
|
|
39
39
|
|
|
40
|
-
#: models.py:
|
|
40
|
+
#: models.py:83
|
|
41
41
|
msgid "details"
|
|
42
42
|
msgstr ""
|
|
43
43
|
|
|
44
|
-
#: models.py:
|
|
44
|
+
#: models.py:84
|
|
45
45
|
msgid "Link to a page where the licence is detailed."
|
|
46
46
|
msgstr ""
|
|
47
47
|
|
|
48
|
-
#: models.py:
|
|
48
|
+
#: models.py:94
|
|
49
49
|
msgid "URL template using OSM tile format"
|
|
50
50
|
msgstr ""
|
|
51
51
|
|
|
52
|
-
#: models.py:
|
|
52
|
+
#: models.py:100
|
|
53
53
|
msgid "Order of the tilelayers in the edit box"
|
|
54
54
|
msgstr ""
|
|
55
55
|
|
|
56
|
-
#: models.py:
|
|
56
|
+
#: models.py:146 models.py:382
|
|
57
57
|
msgid "Everyone"
|
|
58
58
|
msgstr ""
|
|
59
59
|
|
|
60
|
-
#: models.py:
|
|
60
|
+
#: models.py:147 models.py:153 models.py:383
|
|
61
61
|
msgid "Editors only"
|
|
62
62
|
msgstr ""
|
|
63
63
|
|
|
64
|
-
#: models.py:
|
|
64
|
+
#: models.py:148 models.py:384
|
|
65
65
|
msgid "Owner only"
|
|
66
66
|
msgstr ""
|
|
67
67
|
|
|
68
|
-
#: models.py:
|
|
68
|
+
#: models.py:151
|
|
69
69
|
msgid "Everyone (public)"
|
|
70
70
|
msgstr ""
|
|
71
71
|
|
|
72
|
-
#: models.py:
|
|
72
|
+
#: models.py:152
|
|
73
73
|
msgid "Anyone with link"
|
|
74
74
|
msgstr ""
|
|
75
75
|
|
|
76
|
-
#: models.py:
|
|
76
|
+
#: models.py:154
|
|
77
77
|
msgid "Blocked"
|
|
78
78
|
msgstr ""
|
|
79
79
|
|
|
80
|
-
#: models.py:
|
|
80
|
+
#: models.py:157 models.py:391
|
|
81
81
|
msgid "description"
|
|
82
82
|
msgstr ""
|
|
83
83
|
|
|
84
|
-
#: models.py:
|
|
84
|
+
#: models.py:158
|
|
85
85
|
msgid "center"
|
|
86
86
|
msgstr ""
|
|
87
87
|
|
|
88
|
-
#: models.py:
|
|
88
|
+
#: models.py:159
|
|
89
89
|
msgid "zoom"
|
|
90
90
|
msgstr ""
|
|
91
91
|
|
|
92
|
-
#: models.py:
|
|
92
|
+
#: models.py:161
|
|
93
93
|
msgid "locate"
|
|
94
94
|
msgstr ""
|
|
95
95
|
|
|
96
|
-
#: models.py:
|
|
96
|
+
#: models.py:161
|
|
97
97
|
msgid "Locate user on load?"
|
|
98
98
|
msgstr ""
|
|
99
99
|
|
|
100
|
-
#: models.py:
|
|
100
|
+
#: models.py:165
|
|
101
101
|
msgid "Choose the map licence."
|
|
102
102
|
msgstr ""
|
|
103
103
|
|
|
104
|
-
#: models.py:
|
|
104
|
+
#: models.py:166
|
|
105
105
|
msgid "licence"
|
|
106
106
|
msgstr ""
|
|
107
107
|
|
|
108
|
-
#: models.py:
|
|
108
|
+
#: models.py:177
|
|
109
109
|
msgid "owner"
|
|
110
110
|
msgstr ""
|
|
111
111
|
|
|
112
|
-
#: models.py:
|
|
112
|
+
#: models.py:181
|
|
113
113
|
msgid "editors"
|
|
114
114
|
msgstr ""
|
|
115
115
|
|
|
116
|
-
#: models.py:
|
|
116
|
+
#: models.py:186 models.py:405
|
|
117
117
|
msgid "edit status"
|
|
118
118
|
msgstr ""
|
|
119
119
|
|
|
120
|
-
#: models.py:
|
|
120
|
+
#: models.py:191
|
|
121
121
|
msgid "share status"
|
|
122
122
|
msgstr ""
|
|
123
123
|
|
|
124
|
-
#: models.py:
|
|
124
|
+
#: models.py:194 models.py:400
|
|
125
125
|
msgid "settings"
|
|
126
126
|
msgstr ""
|
|
127
127
|
|
|
128
|
-
#: models.py:
|
|
128
|
+
#: models.py:322
|
|
129
129
|
msgid "Clone of"
|
|
130
130
|
msgstr ""
|
|
131
131
|
|
|
132
|
-
#: models.py:
|
|
132
|
+
#: models.py:395
|
|
133
133
|
msgid "display on load"
|
|
134
134
|
msgstr ""
|
|
135
135
|
|
|
136
|
-
#: models.py:
|
|
136
|
+
#: models.py:396
|
|
137
137
|
msgid "Display this layer on load."
|
|
138
138
|
msgstr ""
|
|
139
139
|
|
|
@@ -289,7 +289,7 @@ msgstr ""
|
|
|
289
289
|
msgid "You are logged in. Continuing..."
|
|
290
290
|
msgstr ""
|
|
291
291
|
|
|
292
|
-
#: templates/umap/map_list.html:9 views.py:
|
|
292
|
+
#: templates/umap/map_list.html:9 views.py:349
|
|
293
293
|
msgid "by"
|
|
294
294
|
msgstr ""
|
|
295
295
|
|
|
@@ -495,57 +495,57 @@ msgstr ""
|
|
|
495
495
|
msgid "You have no map yet."
|
|
496
496
|
msgstr ""
|
|
497
497
|
|
|
498
|
-
#: views.py:
|
|
498
|
+
#: views.py:354
|
|
499
499
|
msgid "View the map"
|
|
500
500
|
msgstr ""
|
|
501
501
|
|
|
502
|
-
#: views.py:
|
|
502
|
+
#: views.py:716
|
|
503
503
|
msgid "See full screen"
|
|
504
504
|
msgstr ""
|
|
505
505
|
|
|
506
|
-
#: views.py:
|
|
506
|
+
#: views.py:817
|
|
507
507
|
msgid "Map editors updated with success!"
|
|
508
508
|
msgstr ""
|
|
509
509
|
|
|
510
|
-
#: views.py:
|
|
510
|
+
#: views.py:854
|
|
511
511
|
#, python-format
|
|
512
512
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
513
513
|
msgstr ""
|
|
514
514
|
|
|
515
|
-
#: views.py:
|
|
515
|
+
#: views.py:857
|
|
516
516
|
#, python-format
|
|
517
517
|
msgid "Here is your secret edit link: %(link)s"
|
|
518
518
|
msgstr ""
|
|
519
519
|
|
|
520
|
-
#: views.py:
|
|
520
|
+
#: views.py:864
|
|
521
521
|
#, python-format
|
|
522
522
|
msgid "Can't send email to %(email)s"
|
|
523
523
|
msgstr ""
|
|
524
524
|
|
|
525
|
-
#: views.py:
|
|
525
|
+
#: views.py:867
|
|
526
526
|
#, python-format
|
|
527
527
|
msgid "Email sent to %(email)s"
|
|
528
528
|
msgstr ""
|
|
529
529
|
|
|
530
|
-
#: views.py:
|
|
530
|
+
#: views.py:878
|
|
531
531
|
msgid "Only its owner can delete the map."
|
|
532
532
|
msgstr ""
|
|
533
533
|
|
|
534
|
-
#: views.py:
|
|
534
|
+
#: views.py:906
|
|
535
535
|
#, python-format
|
|
536
536
|
msgid ""
|
|
537
537
|
"Your map has been cloned! If you want to edit this map from another "
|
|
538
538
|
"computer, please use this link: %(anonymous_url)s"
|
|
539
539
|
msgstr ""
|
|
540
540
|
|
|
541
|
-
#: views.py:
|
|
541
|
+
#: views.py:911
|
|
542
542
|
msgid "Congratulations, your map has been cloned!"
|
|
543
543
|
msgstr ""
|
|
544
544
|
|
|
545
|
-
#: views.py:
|
|
545
|
+
#: views.py:1145
|
|
546
546
|
msgid "Layer successfully deleted."
|
|
547
547
|
msgstr ""
|
|
548
548
|
|
|
549
|
-
#: views.py:
|
|
549
|
+
#: views.py:1167
|
|
550
550
|
msgid "Permissions updated with success!"
|
|
551
551
|
msgstr ""
|