umap-project 2.9.2__py3-none-any.whl → 3.0.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/context_processors.py +1 -0
- umap/forms.py +1 -2
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +218 -96
- umap/locale/en/LC_MESSAGES/django.po +131 -55
- umap/locale/et/LC_MESSAGES/django.mo +0 -0
- umap/locale/et/LC_MESSAGES/django.po +175 -130
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.po +117 -72
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +132 -56
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +209 -88
- umap/locale/is/LC_MESSAGES/django.mo +0 -0
- umap/locale/is/LC_MESSAGES/django.po +296 -175
- umap/middleware.py +2 -1
- umap/migrations/0027_map_tags.py +23 -0
- umap/models.py +13 -2
- umap/settings/base.py +23 -5
- umap/static/umap/base.css +41 -8
- umap/static/umap/content.css +72 -37
- umap/static/umap/css/bar.css +43 -21
- umap/static/umap/css/dialog.css +4 -1
- umap/static/umap/css/form.css +40 -27
- umap/static/umap/css/icon.css +11 -1
- umap/static/umap/css/importers.css +7 -0
- umap/static/umap/img/16-white.svg +23 -2
- umap/static/umap/img/16.svg +1 -1
- umap/static/umap/img/24.svg +4 -4
- umap/static/umap/img/home.svg +7 -0
- umap/static/umap/img/importers/banfr.svg +1 -0
- umap/static/umap/img/marker.svg +2 -5
- umap/static/umap/img/source/16-white.svg +24 -3
- umap/static/umap/img/source/16.svg +1 -1
- umap/static/umap/img/source/24.svg +5 -5
- umap/static/umap/img/target.svg +1 -0
- umap/static/umap/js/components/alerts/alert.js +0 -1
- umap/static/umap/js/modules/browser.js +4 -4
- umap/static/umap/js/modules/caption.js +1 -1
- umap/static/umap/js/modules/data/features.js +25 -25
- umap/static/umap/js/modules/data/layer.js +91 -97
- umap/static/umap/js/modules/facets.js +9 -5
- umap/static/umap/js/modules/form/builder.js +21 -29
- umap/static/umap/js/modules/form/fields.js +40 -14
- umap/static/umap/js/modules/formatter.js +1 -1
- umap/static/umap/js/modules/global.js +9 -5
- umap/static/umap/js/modules/help.js +18 -5
- umap/static/umap/js/modules/importer.js +5 -2
- umap/static/umap/js/modules/importers/banfr.js +93 -0
- umap/static/umap/js/modules/importers/cadastrefr.js +2 -2
- umap/static/umap/js/modules/importers/communesfr.js +1 -1
- umap/static/umap/js/modules/permissions.js +20 -10
- umap/static/umap/js/modules/rendering/icon.js +15 -2
- umap/static/umap/js/modules/rendering/layers/classified.js +7 -7
- umap/static/umap/js/modules/rendering/layers/cluster.js +2 -2
- umap/static/umap/js/modules/rendering/layers/heat.js +4 -4
- umap/static/umap/js/modules/rendering/map.js +14 -6
- umap/static/umap/js/modules/rendering/popup.js +2 -2
- umap/static/umap/js/modules/rendering/template.js +3 -3
- umap/static/umap/js/modules/rendering/ui.js +17 -11
- umap/static/umap/js/modules/rules.js +13 -16
- umap/static/umap/js/modules/schema.js +23 -1
- umap/static/umap/js/modules/share.js +1 -1
- umap/static/umap/js/modules/slideshow.js +1 -0
- umap/static/umap/js/modules/sync/engine.js +141 -19
- umap/static/umap/js/modules/sync/undo.js +101 -0
- umap/static/umap/js/modules/sync/updaters.js +51 -28
- umap/static/umap/js/modules/tableeditor.js +1 -1
- umap/static/umap/js/modules/ui/bar.js +61 -21
- umap/static/umap/js/modules/ui/tooltip.js +1 -1
- umap/static/umap/js/modules/umap.js +190 -176
- umap/static/umap/js/modules/utils.js +30 -4
- umap/static/umap/js/umap.controls.js +82 -38
- umap/static/umap/locale/am_ET.js +13 -7
- umap/static/umap/locale/am_ET.json +13 -7
- umap/static/umap/locale/ar.js +13 -7
- umap/static/umap/locale/ar.json +13 -7
- umap/static/umap/locale/ast.js +13 -7
- umap/static/umap/locale/ast.json +13 -7
- umap/static/umap/locale/bg.js +13 -7
- umap/static/umap/locale/bg.json +13 -7
- umap/static/umap/locale/br.js +13 -8
- umap/static/umap/locale/br.json +13 -8
- umap/static/umap/locale/ca.js +13 -7
- umap/static/umap/locale/ca.json +13 -7
- umap/static/umap/locale/cs_CZ.js +26 -20
- umap/static/umap/locale/cs_CZ.json +26 -20
- umap/static/umap/locale/da.js +13 -7
- umap/static/umap/locale/da.json +13 -7
- umap/static/umap/locale/de.js +47 -41
- umap/static/umap/locale/de.json +47 -41
- umap/static/umap/locale/el.js +13 -7
- umap/static/umap/locale/el.json +13 -7
- umap/static/umap/locale/en.js +12 -7
- umap/static/umap/locale/en.json +12 -7
- umap/static/umap/locale/en_US.json +13 -7
- umap/static/umap/locale/es.js +19 -13
- umap/static/umap/locale/es.json +19 -13
- umap/static/umap/locale/et.js +13 -7
- umap/static/umap/locale/et.json +13 -7
- umap/static/umap/locale/eu.js +43 -37
- umap/static/umap/locale/eu.json +43 -37
- umap/static/umap/locale/fa_IR.js +13 -7
- umap/static/umap/locale/fa_IR.json +13 -7
- umap/static/umap/locale/fi.js +13 -7
- umap/static/umap/locale/fi.json +13 -7
- umap/static/umap/locale/fr.js +12 -7
- umap/static/umap/locale/fr.json +12 -7
- umap/static/umap/locale/gl.js +19 -13
- umap/static/umap/locale/gl.json +19 -13
- umap/static/umap/locale/he.js +13 -7
- umap/static/umap/locale/he.json +13 -7
- umap/static/umap/locale/hr.js +13 -7
- umap/static/umap/locale/hr.json +13 -7
- umap/static/umap/locale/hu.js +25 -19
- umap/static/umap/locale/hu.json +25 -19
- umap/static/umap/locale/id.js +13 -7
- umap/static/umap/locale/id.json +13 -7
- umap/static/umap/locale/is.js +151 -145
- umap/static/umap/locale/is.json +151 -145
- umap/static/umap/locale/it.js +13 -7
- umap/static/umap/locale/it.json +13 -7
- umap/static/umap/locale/ja.js +13 -7
- umap/static/umap/locale/ja.json +13 -7
- umap/static/umap/locale/ko.js +13 -7
- umap/static/umap/locale/ko.json +13 -7
- umap/static/umap/locale/lt.js +13 -7
- umap/static/umap/locale/lt.json +13 -7
- umap/static/umap/locale/ms.js +13 -7
- umap/static/umap/locale/ms.json +13 -7
- umap/static/umap/locale/nl.js +12 -7
- umap/static/umap/locale/nl.json +12 -7
- umap/static/umap/locale/no.js +13 -7
- umap/static/umap/locale/no.json +13 -7
- umap/static/umap/locale/pl.js +13 -7
- umap/static/umap/locale/pl.json +13 -7
- umap/static/umap/locale/pl_PL.json +13 -7
- umap/static/umap/locale/pt.js +12 -7
- umap/static/umap/locale/pt.json +12 -7
- umap/static/umap/locale/pt_BR.js +13 -7
- umap/static/umap/locale/pt_BR.json +13 -7
- umap/static/umap/locale/pt_PT.js +13 -7
- umap/static/umap/locale/pt_PT.json +13 -7
- umap/static/umap/locale/ro.js +13 -7
- umap/static/umap/locale/ro.json +13 -7
- umap/static/umap/locale/ru.js +13 -7
- umap/static/umap/locale/ru.json +13 -7
- umap/static/umap/locale/sk_SK.js +13 -7
- umap/static/umap/locale/sk_SK.json +13 -7
- umap/static/umap/locale/sl.js +13 -7
- umap/static/umap/locale/sl.json +13 -7
- umap/static/umap/locale/sr.js +13 -7
- umap/static/umap/locale/sr.json +13 -7
- umap/static/umap/locale/sv.js +13 -7
- umap/static/umap/locale/sv.json +13 -7
- umap/static/umap/locale/th_TH.js +13 -7
- umap/static/umap/locale/th_TH.json +13 -7
- umap/static/umap/locale/tr.js +13 -7
- umap/static/umap/locale/tr.json +13 -7
- umap/static/umap/locale/uk_UA.js +13 -7
- umap/static/umap/locale/uk_UA.json +13 -7
- umap/static/umap/locale/vi.js +13 -7
- umap/static/umap/locale/vi.json +13 -7
- umap/static/umap/locale/vi_VN.json +13 -7
- umap/static/umap/locale/zh.js +13 -7
- umap/static/umap/locale/zh.json +13 -7
- umap/static/umap/locale/zh_CN.json +13 -7
- umap/static/umap/locale/zh_TW.Big5.json +13 -7
- umap/static/umap/locale/zh_TW.js +19 -13
- umap/static/umap/locale/zh_TW.json +19 -13
- umap/static/umap/map.css +58 -28
- umap/static/umap/unittests/sync.js +0 -57
- umap/static/umap/unittests/utils.js +47 -0
- umap/static/umap/vars.css +5 -2
- umap/static/umap/vendors/photon/leaflet.photon.js +3 -0
- umap/sync/payloads.py +3 -2
- umap/templates/auth/user_detail.html +1 -1
- umap/templates/auth/user_stars.html +1 -1
- umap/templates/umap/content.html +17 -12
- umap/templates/umap/home.html +7 -5
- umap/templates/umap/map_fragment.html +1 -1
- umap/templates/umap/map_list.html +20 -13
- umap/templates/umap/search.html +7 -3
- umap/templates/umap/search_bar.html +13 -11
- umap/templates/umap/team_detail.html +1 -1
- umap/tests/base.py +2 -1
- umap/tests/fixtures/remote_data.umap +55 -0
- umap/tests/fixtures/test_upload_data_with_iconurl.umap +122 -0
- umap/tests/integration/test_browser.py +1 -3
- umap/tests/integration/test_conditional_rules.py +3 -0
- umap/tests/integration/test_edit_datalayer.py +2 -7
- umap/tests/integration/test_edit_map.py +15 -0
- umap/tests/integration/test_edit_polygon.py +1 -2
- umap/tests/integration/test_import.py +59 -2
- umap/tests/integration/test_optimistic_merge.py +4 -3
- umap/tests/integration/test_owned_map.py +0 -1
- umap/tests/integration/test_save.py +2 -4
- umap/tests/integration/test_undo_redo.py +267 -0
- umap/tests/integration/test_websocket_sync.py +78 -11
- umap/tests/settings.py +1 -3
- umap/tests/test_datalayer_s3.py +1 -0
- umap/tests/test_map_views.py +1 -0
- umap/tests/test_views.py +34 -0
- umap/utils.py +1 -1
- umap/views.py +23 -2
- {umap_project-2.9.2.dist-info → umap_project-3.0.0.dist-info}/METADATA +13 -12
- {umap_project-2.9.2.dist-info → umap_project-3.0.0.dist-info}/RECORD +211 -213
- umap/static/umap/js/modules/saving.js +0 -52
- umap/static/umap/test/.eslintrc +0 -21
- umap/static/umap/test/DataLayer.js +0 -463
- umap/static/umap/test/Feature.js +0 -131
- umap/static/umap/test/Map.js +0 -37
- umap/static/umap/test/Marker.js +0 -126
- umap/static/umap/test/Polygon.js +0 -111
- umap/static/umap/test/Polyline.js +0 -286
- umap/static/umap/test/Util.js +0 -28
- umap/static/umap/test/_pre.js +0 -455
- umap/static/umap/test/index.html +0 -139
- {umap_project-2.9.2.dist-info → umap_project-3.0.0.dist-info}/WHEEL +0 -0
- {umap_project-2.9.2.dist-info → umap_project-3.0.0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.9.2.dist-info → umap_project-3.0.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -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: 2025-
|
|
11
|
+
"POT-Creation-Date: 2025-04-04 16:49+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"
|
|
@@ -34,137 +34,205 @@ msgstr ""
|
|
|
34
34
|
msgid ""
|
|
35
35
|
"Using “%(name)s” to authenticate is deprecated and will be removed soon. "
|
|
36
36
|
"Please configure another provider below before losing access to your account "
|
|
37
|
-
"and maps."
|
|
37
|
+
"and maps. Then, please logout and login again with the new provider."
|
|
38
38
|
msgstr ""
|
|
39
39
|
|
|
40
|
-
#: models.py:
|
|
40
|
+
#: models.py:61 models.py:80
|
|
41
41
|
msgid "name"
|
|
42
42
|
msgstr ""
|
|
43
43
|
|
|
44
|
-
#: models.py:
|
|
44
|
+
#: models.py:63 models.py:493
|
|
45
45
|
msgid "description"
|
|
46
46
|
msgstr ""
|
|
47
47
|
|
|
48
|
-
#: models.py:
|
|
48
|
+
#: models.py:111
|
|
49
49
|
msgid "details"
|
|
50
50
|
msgstr ""
|
|
51
51
|
|
|
52
|
-
#: models.py:
|
|
52
|
+
#: models.py:112
|
|
53
53
|
msgid "Link to a page where the licence is detailed."
|
|
54
54
|
msgstr ""
|
|
55
55
|
|
|
56
|
-
#: models.py:
|
|
56
|
+
#: models.py:122
|
|
57
57
|
msgid "URL template using OSM tile format"
|
|
58
58
|
msgstr ""
|
|
59
59
|
|
|
60
|
-
#: models.py:
|
|
60
|
+
#: models.py:128
|
|
61
61
|
msgid "Order of the tilelayers in the edit box"
|
|
62
62
|
msgstr ""
|
|
63
63
|
|
|
64
|
-
#: models.py:
|
|
64
|
+
#: models.py:176 models.py:487
|
|
65
65
|
msgid "Only editable with secret edit link"
|
|
66
66
|
msgstr ""
|
|
67
67
|
|
|
68
|
-
#: models.py:
|
|
68
|
+
#: models.py:177 models.py:488
|
|
69
69
|
msgid "Everyone can edit"
|
|
70
70
|
msgstr ""
|
|
71
71
|
|
|
72
|
-
#: models.py:
|
|
72
|
+
#: models.py:180 models.py:481
|
|
73
73
|
msgid "Everyone"
|
|
74
74
|
msgstr ""
|
|
75
75
|
|
|
76
|
-
#: models.py:
|
|
76
|
+
#: models.py:181 models.py:190 models.py:482
|
|
77
77
|
msgid "Editors and team only"
|
|
78
78
|
msgstr ""
|
|
79
79
|
|
|
80
|
-
#: models.py:
|
|
80
|
+
#: models.py:182 models.py:483
|
|
81
81
|
msgid "Owner only"
|
|
82
82
|
msgstr ""
|
|
83
83
|
|
|
84
|
-
#: models.py:
|
|
84
|
+
#: models.py:185
|
|
85
85
|
msgid "Draft (private)"
|
|
86
86
|
msgstr ""
|
|
87
87
|
|
|
88
|
-
#: models.py:
|
|
88
|
+
#: models.py:186
|
|
89
89
|
msgid "Everyone (public)"
|
|
90
90
|
msgstr ""
|
|
91
91
|
|
|
92
|
-
#: models.py:
|
|
92
|
+
#: models.py:189
|
|
93
93
|
msgid "Anyone with link"
|
|
94
94
|
msgstr ""
|
|
95
95
|
|
|
96
|
-
#: models.py:
|
|
96
|
+
#: models.py:191
|
|
97
97
|
msgid "Blocked"
|
|
98
98
|
msgstr ""
|
|
99
99
|
|
|
100
|
-
#: models.py:
|
|
100
|
+
#: models.py:192 models.py:477
|
|
101
101
|
msgid "Deleted"
|
|
102
102
|
msgstr ""
|
|
103
103
|
|
|
104
|
-
#: models.py:
|
|
104
|
+
#: models.py:195
|
|
105
105
|
msgid "center"
|
|
106
106
|
msgstr ""
|
|
107
107
|
|
|
108
|
-
#: models.py:
|
|
108
|
+
#: models.py:196
|
|
109
109
|
msgid "zoom"
|
|
110
110
|
msgstr ""
|
|
111
111
|
|
|
112
|
-
#: models.py:
|
|
112
|
+
#: models.py:198
|
|
113
113
|
msgid "locate"
|
|
114
114
|
msgstr ""
|
|
115
115
|
|
|
116
|
-
#: models.py:
|
|
116
|
+
#: models.py:198
|
|
117
117
|
msgid "Locate user on load?"
|
|
118
118
|
msgstr ""
|
|
119
119
|
|
|
120
|
-
#: models.py:
|
|
120
|
+
#: models.py:202
|
|
121
121
|
msgid "Choose the map licence."
|
|
122
122
|
msgstr ""
|
|
123
123
|
|
|
124
|
-
#: models.py:
|
|
124
|
+
#: models.py:203
|
|
125
125
|
msgid "licence"
|
|
126
126
|
msgstr ""
|
|
127
127
|
|
|
128
|
-
#: models.py:
|
|
128
|
+
#: models.py:214
|
|
129
129
|
msgid "owner"
|
|
130
130
|
msgstr ""
|
|
131
131
|
|
|
132
|
-
#: models.py:
|
|
132
|
+
#: models.py:218
|
|
133
133
|
msgid "editors"
|
|
134
134
|
msgstr ""
|
|
135
135
|
|
|
136
|
-
#: models.py:
|
|
136
|
+
#: models.py:224
|
|
137
137
|
msgid "team"
|
|
138
138
|
msgstr ""
|
|
139
139
|
|
|
140
|
-
#: models.py:
|
|
140
|
+
#: models.py:230 models.py:509
|
|
141
141
|
msgid "edit status"
|
|
142
142
|
msgstr ""
|
|
143
143
|
|
|
144
|
-
#: models.py:
|
|
144
|
+
#: models.py:235 models.py:514
|
|
145
145
|
msgid "share status"
|
|
146
146
|
msgstr ""
|
|
147
147
|
|
|
148
|
-
#: models.py:
|
|
148
|
+
#: models.py:238 models.py:504
|
|
149
149
|
msgid "settings"
|
|
150
150
|
msgstr ""
|
|
151
151
|
|
|
152
|
-
#: models.py:
|
|
152
|
+
#: models.py:410
|
|
153
153
|
msgid "Clone of"
|
|
154
154
|
msgstr ""
|
|
155
155
|
|
|
156
|
-
#: models.py:
|
|
156
|
+
#: models.py:476 models.py:480 models.py:486
|
|
157
157
|
msgid "Inherit"
|
|
158
158
|
msgstr ""
|
|
159
159
|
|
|
160
|
-
#: models.py:
|
|
160
|
+
#: models.py:499
|
|
161
161
|
msgid "display on load"
|
|
162
162
|
msgstr ""
|
|
163
163
|
|
|
164
|
-
#: models.py:
|
|
164
|
+
#: models.py:500
|
|
165
165
|
msgid "Display this layer on load."
|
|
166
166
|
msgstr ""
|
|
167
167
|
|
|
168
|
+
#: settings/base.py:295
|
|
169
|
+
msgid "Art and Culture"
|
|
170
|
+
msgstr ""
|
|
171
|
+
|
|
172
|
+
#: settings/base.py:296
|
|
173
|
+
msgid "Cycling"
|
|
174
|
+
msgstr ""
|
|
175
|
+
|
|
176
|
+
#: settings/base.py:297
|
|
177
|
+
msgid "Business"
|
|
178
|
+
msgstr ""
|
|
179
|
+
|
|
180
|
+
#: settings/base.py:298
|
|
181
|
+
msgid "Environment"
|
|
182
|
+
msgstr ""
|
|
183
|
+
|
|
184
|
+
#: settings/base.py:299
|
|
185
|
+
msgid "Education"
|
|
186
|
+
msgstr ""
|
|
187
|
+
|
|
188
|
+
#: settings/base.py:300
|
|
189
|
+
msgid "Food and Agriculture"
|
|
190
|
+
msgstr ""
|
|
191
|
+
|
|
192
|
+
#: settings/base.py:301
|
|
193
|
+
msgid "Geopolitics"
|
|
194
|
+
msgstr ""
|
|
195
|
+
|
|
196
|
+
#: settings/base.py:302
|
|
197
|
+
msgid "Health"
|
|
198
|
+
msgstr ""
|
|
199
|
+
|
|
200
|
+
#: settings/base.py:303
|
|
201
|
+
msgid "Hiking"
|
|
202
|
+
msgstr ""
|
|
203
|
+
|
|
204
|
+
#: settings/base.py:304
|
|
205
|
+
msgid "History"
|
|
206
|
+
msgstr ""
|
|
207
|
+
|
|
208
|
+
#: settings/base.py:305
|
|
209
|
+
msgid "Public sector"
|
|
210
|
+
msgstr ""
|
|
211
|
+
|
|
212
|
+
#: settings/base.py:306
|
|
213
|
+
msgid "Science"
|
|
214
|
+
msgstr ""
|
|
215
|
+
|
|
216
|
+
#: settings/base.py:307
|
|
217
|
+
msgid "Shopping"
|
|
218
|
+
msgstr ""
|
|
219
|
+
|
|
220
|
+
#: settings/base.py:308
|
|
221
|
+
msgid "Sport and Leisure"
|
|
222
|
+
msgstr ""
|
|
223
|
+
|
|
224
|
+
#: settings/base.py:309
|
|
225
|
+
msgid "Travel"
|
|
226
|
+
msgstr ""
|
|
227
|
+
|
|
228
|
+
#: settings/base.py:310
|
|
229
|
+
msgid "Transports"
|
|
230
|
+
msgstr ""
|
|
231
|
+
|
|
232
|
+
#: settings/base.py:311
|
|
233
|
+
msgid "Tourism"
|
|
234
|
+
msgstr ""
|
|
235
|
+
|
|
168
236
|
#: templates/403.html:8
|
|
169
237
|
msgid ""
|
|
170
238
|
"<a href=\"https://discover.umap-project.org/support/faq/#map-statuses\" "
|
|
@@ -417,7 +485,7 @@ msgstr ""
|
|
|
417
485
|
msgid "Map of the uMaps"
|
|
418
486
|
msgstr ""
|
|
419
487
|
|
|
420
|
-
#: templates/umap/home.html:
|
|
488
|
+
#: templates/umap/home.html:25
|
|
421
489
|
msgid "Get inspired, browse maps"
|
|
422
490
|
msgstr ""
|
|
423
491
|
|
|
@@ -425,11 +493,15 @@ msgstr ""
|
|
|
425
493
|
msgid "You are logged in. Continuing..."
|
|
426
494
|
msgstr ""
|
|
427
495
|
|
|
428
|
-
#: templates/umap/map_list.html:
|
|
496
|
+
#: templates/umap/map_list.html:18 views.py:444
|
|
429
497
|
msgid "by"
|
|
430
498
|
msgstr ""
|
|
431
499
|
|
|
432
|
-
#: templates/umap/map_list.html:
|
|
500
|
+
#: templates/umap/map_list.html:22
|
|
501
|
+
msgid "See the map"
|
|
502
|
+
msgstr ""
|
|
503
|
+
|
|
504
|
+
#: templates/umap/map_list.html:28
|
|
433
505
|
msgid "More"
|
|
434
506
|
msgstr ""
|
|
435
507
|
|
|
@@ -587,11 +659,11 @@ msgid_plural "%(count)s maps found:"
|
|
|
587
659
|
msgstr[0] ""
|
|
588
660
|
msgstr[1] ""
|
|
589
661
|
|
|
590
|
-
#: templates/umap/search.html:
|
|
662
|
+
#: templates/umap/search.html:30
|
|
591
663
|
msgid "No map found."
|
|
592
664
|
msgstr ""
|
|
593
665
|
|
|
594
|
-
#: templates/umap/search.html:
|
|
666
|
+
#: templates/umap/search.html:35
|
|
595
667
|
msgid "Latest created maps"
|
|
596
668
|
msgstr ""
|
|
597
669
|
|
|
@@ -599,7 +671,11 @@ msgstr ""
|
|
|
599
671
|
msgid "Search maps"
|
|
600
672
|
msgstr ""
|
|
601
673
|
|
|
602
|
-
#: templates/umap/search_bar.html:
|
|
674
|
+
#: templates/umap/search_bar.html:14
|
|
675
|
+
msgid "Any category"
|
|
676
|
+
msgstr ""
|
|
677
|
+
|
|
678
|
+
#: templates/umap/search_bar.html:19
|
|
603
679
|
msgid "Search"
|
|
604
680
|
msgstr ""
|
|
605
681
|
|
|
@@ -663,70 +739,70 @@ msgstr ""
|
|
|
663
739
|
msgid "New team"
|
|
664
740
|
msgstr ""
|
|
665
741
|
|
|
666
|
-
#: views.py:
|
|
742
|
+
#: views.py:235
|
|
667
743
|
msgid "Cannot delete a team with more than one member"
|
|
668
744
|
msgstr ""
|
|
669
745
|
|
|
670
|
-
#: views.py:
|
|
746
|
+
#: views.py:239
|
|
671
747
|
#, python-format
|
|
672
748
|
msgid "Team “%(name)s” has been deleted"
|
|
673
749
|
msgstr ""
|
|
674
750
|
|
|
675
|
-
#: views.py:
|
|
751
|
+
#: views.py:449
|
|
676
752
|
msgid "View the map"
|
|
677
753
|
msgstr ""
|
|
678
754
|
|
|
679
|
-
#: views.py:
|
|
755
|
+
#: views.py:845
|
|
680
756
|
msgid "See full screen"
|
|
681
757
|
msgstr ""
|
|
682
758
|
|
|
683
|
-
#: views.py:
|
|
759
|
+
#: views.py:988
|
|
684
760
|
msgid "Map editors updated with success!"
|
|
685
761
|
msgstr ""
|
|
686
762
|
|
|
687
|
-
#: views.py:
|
|
763
|
+
#: views.py:1024
|
|
688
764
|
#, python-format
|
|
689
765
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
690
766
|
msgstr ""
|
|
691
767
|
|
|
692
|
-
#: views.py:
|
|
768
|
+
#: views.py:1027
|
|
693
769
|
#, python-format
|
|
694
770
|
msgid "Here is your secret edit link: %(link)s"
|
|
695
771
|
msgstr ""
|
|
696
772
|
|
|
697
|
-
#: views.py:
|
|
773
|
+
#: views.py:1034
|
|
698
774
|
#, python-format
|
|
699
775
|
msgid "Can't send email to %(email)s"
|
|
700
776
|
msgstr ""
|
|
701
777
|
|
|
702
|
-
#: views.py:
|
|
778
|
+
#: views.py:1037
|
|
703
779
|
#, python-format
|
|
704
780
|
msgid "Email sent to %(email)s"
|
|
705
781
|
msgstr ""
|
|
706
782
|
|
|
707
|
-
#: views.py:
|
|
783
|
+
#: views.py:1048
|
|
708
784
|
msgid "Only its owner can delete the map."
|
|
709
785
|
msgstr ""
|
|
710
786
|
|
|
711
|
-
#: views.py:
|
|
787
|
+
#: views.py:1051
|
|
712
788
|
msgid "Map successfully deleted."
|
|
713
789
|
msgstr ""
|
|
714
790
|
|
|
715
|
-
#: views.py:
|
|
791
|
+
#: views.py:1077
|
|
716
792
|
#, python-format
|
|
717
793
|
msgid ""
|
|
718
794
|
"Your map has been cloned! If you want to edit this map from another "
|
|
719
795
|
"computer, please use this link: %(anonymous_url)s"
|
|
720
796
|
msgstr ""
|
|
721
797
|
|
|
722
|
-
#: views.py:
|
|
798
|
+
#: views.py:1082
|
|
723
799
|
msgid "Congratulations, your map has been cloned!"
|
|
724
800
|
msgstr ""
|
|
725
801
|
|
|
726
|
-
#: views.py:
|
|
802
|
+
#: views.py:1336
|
|
727
803
|
msgid "Layer successfully deleted."
|
|
728
804
|
msgstr ""
|
|
729
805
|
|
|
730
|
-
#: views.py:
|
|
806
|
+
#: views.py:1358
|
|
731
807
|
msgid "Permissions updated with success!"
|
|
732
808
|
msgstr ""
|
|
Binary file
|